slnodejs 6.1.559 → 6.1.564

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/browser-agent/dist/browser-agent-all.js +3 -1
  2. package/browser-agent/dist/browser-agent-all.min.js +1 -1
  3. package/browser-agent/package.json +1 -1
  4. package/package.json +1 -1
  5. package/tsOutputs/build-scanner/build-diff-process.js +1 -0
  6. package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
  7. package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +3 -0
  8. package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
  9. package/tsOutputs/build-scanner/instrumentation/files-instrumenter.d.ts +1 -0
  10. package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js.map +1 -1
  11. package/tsOutputs/build-scanner/instrumentation/instrumented-file-size-reducer.js +7 -1
  12. package/tsOutputs/build-scanner/instrumentation/instrumented-file-size-reducer.js.map +1 -1
  13. package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.d.ts +1 -0
  14. package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.js +1 -1
  15. package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.js.map +1 -1
  16. package/tsOutputs/cli-parse/contracts.d.ts +1 -0
  17. package/tsOutputs/cli-parse/contracts.js.map +1 -1
  18. package/tsOutputs/cli-parse/executors/build-executor.js +1 -0
  19. package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
  20. package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js +1 -1
  21. package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js.map +1 -1
  22. package/tsOutputs/common/constants/sl-env-vars.d.ts +2 -0
  23. package/tsOutputs/common/constants/sl-env-vars.js +4 -0
  24. package/tsOutputs/common/constants/sl-env-vars.js.map +1 -1
@@ -29132,7 +29132,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
29132
29132
  "use strict";
29133
29133
  Object.defineProperty(exports, "__esModule", { value: true });
29134
29134
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
29135
- exports.SL_AGENT_VERSION = '6.1.559';
29135
+ exports.SL_AGENT_VERSION = '6.1.564';
29136
29136
  exports.SL_AGENT_TYPE = 'browser';
29137
29137
  });
29138
29138
 
@@ -33746,6 +33746,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
33746
33746
  }
33747
33747
  static minifyInstrumentedOutput() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.MINIFY_INSTRUMENTED_OUTPUT); }
33748
33748
  static inProcessInstrumentation() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.IN_PROCESS_INSTRUMENTATION); }
33749
+ static useExperimentalSizeReduction() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.USE_EXPERIMENTAL_SIZE_REDUCTION); }
33749
33750
  static getMaxBuffer() {
33750
33751
  const bufferInBytes = env_var_parsing_1.EnvVarParsing.parseNumber(SlEnvVars.CIA.MAX_BUFFER);
33751
33752
  if (bufferInBytes !== null) {
@@ -33761,6 +33762,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
33761
33762
  _a.REDUCE_INSTRUMENTED_FILE_SIZE = 'SL_reduceInstrumentedFileSize',
33762
33763
  _a.MINIFY_INSTRUMENTED_OUTPUT = 'SL_minifyInstrumentedOutput',
33763
33764
  _a.IN_PROCESS_INSTRUMENTATION = 'SL_inProcessInstrumentation',
33765
+ _a.USE_EXPERIMENTAL_SIZE_REDUCTION = 'SL_experimentalSizeReduction',
33764
33766
  _a.SEND_COMMIT_TITLES = 'SL_sendCommitTitles',
33765
33767
  _a.MAX_BUFFER = 'SL_maxBuffer',
33766
33768
  _a);