slnodejs 6.1.734 → 6.1.743
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 +4 -2
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/browser-agent/package.json +1 -1
- package/package.json +2 -1
- package/tsOutputs/build-scanner/build-diff-process.js +7 -0
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +3 -0
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/content-instrumenter.d.ts +3 -1
- package/tsOutputs/build-scanner/instrumentation/content-instrumenter.js +6 -2
- package/tsOutputs/build-scanner/instrumentation/content-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.d.ts +1 -0
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js +2 -0
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.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 +2 -1
- package/tsOutputs/build-scanner/instrumentation/strategies/js-instrumnetation-strategy.js.map +1 -1
- package/tsOutputs/cli-parse/cli.js +5 -0
- package/tsOutputs/cli-parse/cli.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-args-dto.js +1 -0
- package/tsOutputs/cli-parse/executors/build-args-dto.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +11 -7
- package/tsOutputs/cli-parse/executors/build-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
|
@@ -30581,7 +30581,7 @@ module.exports={
|
|
|
30581
30581
|
"_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz",
|
|
30582
30582
|
"_shasum": "c715e09f78b6923977610d4c2346d6ce22e6dded",
|
|
30583
30583
|
"_spec": "elliptic@^6.5.5",
|
|
30584
|
-
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
|
|
30584
|
+
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main@2/browser-agent/node_modules/browserify-sign",
|
|
30585
30585
|
"author": {
|
|
30586
30586
|
"name": "Fedor Indutny",
|
|
30587
30587
|
"email": "fedor@indutny.com"
|
|
@@ -57095,7 +57095,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57095
57095
|
"use strict";
|
|
57096
57096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57097
57097
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
57098
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
57098
|
+
exports.SL_AGENT_VERSION = '6.1.743';
|
|
57099
57099
|
exports.SL_AGENT_TYPE = 'browser';
|
|
57100
57100
|
});
|
|
57101
57101
|
|
|
@@ -61910,6 +61910,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61910
61910
|
static minifyInstrumentedOutput() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.MINIFY_INSTRUMENTED_OUTPUT); }
|
|
61911
61911
|
static inProcessInstrumentation() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.IN_PROCESS_INSTRUMENTATION); }
|
|
61912
61912
|
static useExperimentalSizeReduction() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.USE_EXPERIMENTAL_SIZE_REDUCTION); }
|
|
61913
|
+
static useNewInstrumenter() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.USE_NEW_INSTRUMENTER); }
|
|
61913
61914
|
static getMaxBuffer() {
|
|
61914
61915
|
const bufferInBytes = env_var_parsing_1.EnvVarParsing.parseNumber(SlEnvVars.CIA.MAX_BUFFER);
|
|
61915
61916
|
if (bufferInBytes !== null) {
|
|
@@ -61927,6 +61928,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61927
61928
|
_a.MINIFY_INSTRUMENTED_OUTPUT = 'SL_minifyInstrumentedOutput',
|
|
61928
61929
|
_a.IN_PROCESS_INSTRUMENTATION = 'SL_inProcessInstrumentation',
|
|
61929
61930
|
_a.USE_EXPERIMENTAL_SIZE_REDUCTION = 'SL_experimentalSizeReduction',
|
|
61931
|
+
_a.USE_NEW_INSTRUMENTER = 'SL_newInstrumenter',
|
|
61930
61932
|
_a.SEND_COMMIT_TITLES = 'SL_sendCommitTitles',
|
|
61931
61933
|
_a.MAX_BUFFER = 'SL_maxBuffer',
|
|
61932
61934
|
_a);
|