slnodejs 6.1.175 → 6.1.177
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 -0
- package/browser-agent/dist/browser-agent-all.min.js +19 -19
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/build-scanner/mappings/scm-file-fixer.js +8 -1
- package/tsOutputs/build-scanner/mappings/scm-file-fixer.js.map +1 -1
- package/tsOutputs/common/constants/sl-env-vars.d.ts +2 -0
- package/tsOutputs/common/constants/sl-env-vars.js +5 -0
- package/tsOutputs/common/constants/sl-env-vars.js.map +1 -1
|
@@ -47758,6 +47758,9 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
47758
47758
|
class_1.getFileExtensions = function () {
|
|
47759
47759
|
return process.env[SlEnvVars.CIA.FILE_EXTENSIONS];
|
|
47760
47760
|
};
|
|
47761
|
+
class_1.getScmPrefix = function () {
|
|
47762
|
+
return process.env[SlEnvVars.CIA.SCM_PREFIX];
|
|
47763
|
+
};
|
|
47761
47764
|
class_1.getSourceRoot = function () {
|
|
47762
47765
|
return process.env[SlEnvVars.CIA.SL_SOURCE_ROOT];
|
|
47763
47766
|
};
|
|
@@ -47783,6 +47786,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
47783
47786
|
return class_1;
|
|
47784
47787
|
}()),
|
|
47785
47788
|
_a.FILE_EXTENSIONS = 'SL_fileExtensions',
|
|
47789
|
+
_a.SCM_PREFIX = 'SCM_prefix',
|
|
47786
47790
|
_a.SL_SOURCE_ROOT = 'SL_sourceRoot',
|
|
47787
47791
|
_a.SL_MAPPING_PATH = 'SL_mappingPath',
|
|
47788
47792
|
_a.SL_MAPPING_URL = 'SL_mappingUrl',
|