slnodejs 6.1.912 → 6.1.913
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 +5 -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/cli-parse/executors/base-executor.js +34 -0
- package/tsOutputs/cli-parse/executors/base-executor.js.map +1 -1
- package/tsOutputs/common/constants/sl-env-vars.d.ts +4 -0
- package/tsOutputs/common/constants/sl-env-vars.js +4 -0
- package/tsOutputs/common/constants/sl-env-vars.js.map +1 -1
- package/tsOutputs/test-listener/agent-loader.js +11 -3
- package/tsOutputs/test-listener/agent-loader.js.map +1 -1
- package/tsOutputs/test-listener/instrument-global.js +43 -0
- package/tsOutputs/test-listener/instrument-global.js.map +1 -0
|
@@ -57157,7 +57157,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57157
57157
|
"use strict";
|
|
57158
57158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57159
57159
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
57160
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
57160
|
+
exports.SL_AGENT_VERSION = '6.1.913';
|
|
57161
57161
|
exports.SL_AGENT_TYPE = 'browser';
|
|
57162
57162
|
});
|
|
57163
57163
|
|
|
@@ -61988,6 +61988,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61988
61988
|
}
|
|
61989
61989
|
return bufferInBytes;
|
|
61990
61990
|
}
|
|
61991
|
+
static instrumentGlobal() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.INSTRUMENT_GLOBAL); }
|
|
61992
|
+
static dumpEnvironment() { return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.DUMP_ENVIRONMENT); }
|
|
61991
61993
|
},
|
|
61992
61994
|
_a.FILE_EXTENSIONS = 'SL_fileExtensions',
|
|
61993
61995
|
_a.SL_SOURCE_ROOT = 'SL_sourceRoot',
|
|
@@ -62002,6 +62004,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
62002
62004
|
_a.PARTIAL_BUILD_MAPPING = 'SL_partialBuildMapping',
|
|
62003
62005
|
_a.SCAN_DOT_FOLDERS = 'SL_scanDotFolders',
|
|
62004
62006
|
_a.SEND_COMMIT_TITLES = 'SL_sendCommitTitles',
|
|
62007
|
+
_a.INSTRUMENT_GLOBAL = 'SL_instrumentGlobal',
|
|
62008
|
+
_a.DUMP_ENVIRONMENT = 'SL_dumpEnvironment',
|
|
62005
62009
|
_a.MAX_BUFFER = 'SL_maxBuffer',
|
|
62006
62010
|
_a);
|
|
62007
62011
|
});
|