slnodejs 6.1.559 → 6.1.563
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.
- package/browser-agent/dist/browser-agent-all.js +3 -1
- package/browser-agent/dist/browser-agent-all.min.js +1 -1
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/build-scanner/build-diff-process.js +1 -0
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +6 -0
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.d.ts +1 -0
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/instrumented-file-size-reducer.js +7 -1
- package/tsOutputs/build-scanner/instrumentation/instrumented-file-size-reducer.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.d.ts +1 -0
- package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.js +1 -1
- package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.js.map +1 -1
- package/tsOutputs/cli-parse/contracts.d.ts +1 -0
- package/tsOutputs/cli-parse/contracts.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +1 -0
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js +1 -1
- package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js.map +1 -1
- package/tsOutputs/common/constants/sl-env-vars.d.ts +2 -0
- package/tsOutputs/common/constants/sl-env-vars.js +4 -0
- 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.
|
|
29135
|
+
exports.SL_AGENT_VERSION = '6.1.563';
|
|
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);
|