slnodejs 6.1.517 → 6.1.522
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 +7 -4
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/browser-agent/package.json +1 -1
- package/package.json +2 -2
- package/tsOutputs/api.js +1 -1
- package/tsOutputs/build-scanner/build-diff-process.js +10 -1
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +1 -0
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.d.ts +3 -0
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js +5 -0
- package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js.map +1 -1
- package/tsOutputs/build-scanner/source-map-eraser/factory.d.ts +5 -0
- package/tsOutputs/build-scanner/source-map-eraser/factory.js +24 -0
- package/tsOutputs/build-scanner/source-map-eraser/factory.js.map +1 -0
- package/tsOutputs/build-scanner/source-map-eraser/interface.d.ts +9 -0
- package/tsOutputs/build-scanner/source-map-eraser/interface.js +10 -0
- package/tsOutputs/build-scanner/source-map-eraser/interface.js.map +1 -0
- package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.d.ts +5 -0
- package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.js +22 -0
- package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.js.map +1 -0
- package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.d.ts +9 -0
- package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.js +28 -0
- package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.js.map +1 -0
- package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.d.ts +10 -0
- package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.js +45 -0
- package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.js.map +1 -0
- package/tsOutputs/cli-parse/cli.js +6 -3
- package/tsOutputs/cli-parse/cli.js.map +1 -1
- package/tsOutputs/cli-parse/contracts.d.ts +2 -0
- package/tsOutputs/cli-parse/contracts.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 +12 -1
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js +12 -1
- package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js.map +1 -1
|
@@ -14811,11 +14811,14 @@ module.exports = function hasSymbols() {
|
|
|
14811
14811
|
},{}],174:[function(require,module,exports){
|
|
14812
14812
|
'use strict';
|
|
14813
14813
|
|
|
14814
|
-
var
|
|
14814
|
+
var hasOwnProperty = {}.hasOwnProperty;
|
|
14815
|
+
var call = Function.prototype.call;
|
|
14815
14816
|
|
|
14816
|
-
module.exports =
|
|
14817
|
+
module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
|
|
14818
|
+
return call.call(hasOwnProperty, O, P);
|
|
14819
|
+
};
|
|
14817
14820
|
|
|
14818
|
-
},{
|
|
14821
|
+
},{}],175:[function(require,module,exports){
|
|
14819
14822
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
14820
14823
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
14821
14824
|
var e, m
|
|
@@ -28889,7 +28892,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
28889
28892
|
"use strict";
|
|
28890
28893
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28891
28894
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
28892
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
28895
|
+
exports.SL_AGENT_VERSION = '6.1.522';
|
|
28893
28896
|
exports.SL_AGENT_TYPE = 'browser';
|
|
28894
28897
|
});
|
|
28895
28898
|
|