Skip to content

Commit

Permalink
feat: export envVars top-level
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Apr 10, 2024
1 parent 5ebcc2d commit 0ed5e69
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@
},
"exports": {
".": "./lib/index.js",
"./testSetup": "./lib/testSetup.js",
"./messages": "./lib/messages.js",
"./sfError": "./lib/sfError.js",
"./config": "./lib/config/config.js",
"./configAggregator": "./lib/config/configAggregator.js",
"./envVars": "./lib/config/envVars.js",
"./lifecycle": "./lib/lifecycleEvents.js",
"./logger": "./lib/logger/logger.js",
"./configAggregator": "./lib/config/configAggregator.js",
"./stateAggregator": "./lib/stateAggregator/stateAggregator.js",
"./config": "./lib/config/config.js",
"./messages": "./lib/messages.js",
"./messageTransformer": "./lib/messageTransformer.js",
"./project": "./lib/sfProject.js",
"./messageTransformer": "./lib/messageTransformer.js"
"./sfError": "./lib/sfError.js",
"./stateAggregator": "./lib/stateAggregator/stateAggregator.js",
"./testSetup": "./lib/testSetup.js"
},
"scripts": {
"build": "wireit",
Expand Down

3 comments on commit 0ed5e69

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - ubuntu-latest

Benchmark suite Current: 0ed5e69 Previous: 1f94dce Ratio
Child logger creation 467440 ops/sec (±2.04%) 482061 ops/sec (±1.11%) 1.03
Logging a string on root logger 804131 ops/sec (±8.60%) 798168 ops/sec (±7.65%) 0.99
Logging an object on root logger 626228 ops/sec (±7.54%) 663936 ops/sec (±5.98%) 1.06
Logging an object with a message on root logger 6340 ops/sec (±214.82%) 4118 ops/sec (±224.34%) 0.65
Logging an object with a redacted prop on root logger 442633 ops/sec (±14.60%) 503723 ops/sec (±9.53%) 1.14
Logging a nested 3-level object on root logger 390222 ops/sec (±8.39%) 385729 ops/sec (±8.41%) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Logger Benchmarks - windows-latest'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 0ed5e69 Previous: 1f94dce Ratio
Logging an object with a message on root logger 3049 ops/sec (±224.04%) 9830 ops/sec (±189.29%) 3.22

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - windows-latest

Benchmark suite Current: 0ed5e69 Previous: 1f94dce Ratio
Child logger creation 343421 ops/sec (±0.23%) 342589 ops/sec (±0.54%) 1.00
Logging a string on root logger 846590 ops/sec (±5.50%) 784682 ops/sec (±6.88%) 0.93
Logging an object on root logger 642318 ops/sec (±6.33%) 592872 ops/sec (±5.93%) 0.92
Logging an object with a message on root logger 3049 ops/sec (±224.04%) 9830 ops/sec (±189.29%) 3.22
Logging an object with a redacted prop on root logger 469966 ops/sec (±8.08%) 386372 ops/sec (±22.81%) 0.82
Logging a nested 3-level object on root logger 339259 ops/sec (±6.18%) 316534 ops/sec (±5.04%) 0.93

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.