@ceon-oy/monitor-sdk 1.1.3 → 1.1.4

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/dist/index.js CHANGED
@@ -567,8 +567,14 @@ var MonitorClient = class {
567
567
  return [];
568
568
  }
569
569
  try {
570
- const fsModule = await import("fs");
571
- const pathModule = await import("path");
570
+ const fsModule = await import(
571
+ /* webpackIgnore: true */
572
+ "fs"
573
+ );
574
+ const pathModule = await import(
575
+ /* webpackIgnore: true */
576
+ "path"
577
+ );
572
578
  const fs = fsModule.default || fsModule;
573
579
  const path = pathModule.default || pathModule;
574
580
  const baseDir = process.cwd();
@@ -878,8 +884,14 @@ var MonitorClient = class {
878
884
  let path;
879
885
  let fs;
880
886
  try {
881
- const pathModule = await import("path");
882
- const fsModule = await import("fs");
887
+ const pathModule = await import(
888
+ /* webpackIgnore: true */
889
+ "path"
890
+ );
891
+ const fsModule = await import(
892
+ /* webpackIgnore: true */
893
+ "fs"
894
+ );
883
895
  path = pathModule;
884
896
  fs = fsModule;
885
897
  } catch {
package/dist/index.mjs CHANGED
@@ -531,8 +531,14 @@ var MonitorClient = class {
531
531
  return [];
532
532
  }
533
533
  try {
534
- const fsModule = await import("fs");
535
- const pathModule = await import("path");
534
+ const fsModule = await import(
535
+ /* webpackIgnore: true */
536
+ "fs"
537
+ );
538
+ const pathModule = await import(
539
+ /* webpackIgnore: true */
540
+ "path"
541
+ );
536
542
  const fs = fsModule.default || fsModule;
537
543
  const path = pathModule.default || pathModule;
538
544
  const baseDir = process.cwd();
@@ -842,8 +848,14 @@ var MonitorClient = class {
842
848
  let path;
843
849
  let fs;
844
850
  try {
845
- const pathModule = await import("path");
846
- const fsModule = await import("fs");
851
+ const pathModule = await import(
852
+ /* webpackIgnore: true */
853
+ "path"
854
+ );
855
+ const fsModule = await import(
856
+ /* webpackIgnore: true */
857
+ "fs"
858
+ );
847
859
  path = pathModule;
848
860
  fs = fsModule;
849
861
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceon-oy/monitor-sdk",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Client SDK for Ceon Monitor - Error tracking, health monitoring, security events, and vulnerability scanning",
5
5
  "author": "Ceon",
6
6
  "license": "MIT",