slnodejs 6.1.519 → 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.
Files changed (36) hide show
  1. package/browser-agent/dist/browser-agent-all.js +7 -4
  2. package/browser-agent/dist/browser-agent-all.min.js +2 -2
  3. package/browser-agent/package.json +1 -1
  4. package/package.json +2 -2
  5. package/tsOutputs/build-scanner/build-diff-process.js +10 -1
  6. package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
  7. package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +1 -0
  8. package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
  9. package/tsOutputs/build-scanner/instrumentation/files-instrumenter.d.ts +3 -0
  10. package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js +5 -0
  11. package/tsOutputs/build-scanner/instrumentation/files-instrumenter.js.map +1 -1
  12. package/tsOutputs/build-scanner/source-map-eraser/factory.d.ts +5 -0
  13. package/tsOutputs/build-scanner/source-map-eraser/factory.js +24 -0
  14. package/tsOutputs/build-scanner/source-map-eraser/factory.js.map +1 -0
  15. package/tsOutputs/build-scanner/source-map-eraser/interface.d.ts +9 -0
  16. package/tsOutputs/build-scanner/source-map-eraser/interface.js +10 -0
  17. package/tsOutputs/build-scanner/source-map-eraser/interface.js.map +1 -0
  18. package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.d.ts +5 -0
  19. package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.js +22 -0
  20. package/tsOutputs/build-scanner/source-map-eraser/none-source-maps-eraser.js.map +1 -0
  21. package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.d.ts +9 -0
  22. package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.js +28 -0
  23. package/tsOutputs/build-scanner/source-map-eraser/skip-copy-source-maps.js.map +1 -0
  24. package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.d.ts +10 -0
  25. package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.js +45 -0
  26. package/tsOutputs/build-scanner/source-map-eraser/source-maps-eraser.js.map +1 -0
  27. package/tsOutputs/cli-parse/cli.js +6 -3
  28. package/tsOutputs/cli-parse/cli.js.map +1 -1
  29. package/tsOutputs/cli-parse/contracts.d.ts +2 -0
  30. package/tsOutputs/cli-parse/contracts.js.map +1 -1
  31. package/tsOutputs/cli-parse/executors/build-args-dto.js +1 -0
  32. package/tsOutputs/cli-parse/executors/build-args-dto.js.map +1 -1
  33. package/tsOutputs/cli-parse/executors/build-executor.js +12 -1
  34. package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
  35. package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js +12 -1
  36. 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 bind = require('function-bind');
14814
+ var hasOwnProperty = {}.hasOwnProperty;
14815
+ var call = Function.prototype.call;
14815
14816
 
14816
- module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
14817
+ module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
14818
+ return call.call(hasOwnProperty, O, P);
14819
+ };
14817
14820
 
14818
- },{"function-bind":169}],175:[function(require,module,exports){
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.519';
28895
+ exports.SL_AGENT_VERSION = '6.1.522';
28893
28896
  exports.SL_AGENT_TYPE = 'browser';
28894
28897
  });
28895
28898