react-saga-redux 1.0.3 → 1.0.5
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 +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Props.ts +4 -2
package/dist/index.mjs
CHANGED
|
@@ -890,6 +890,8 @@ var SORTING_ORDER = {
|
|
|
890
890
|
};
|
|
891
891
|
|
|
892
892
|
// src/components/Props.ts
|
|
893
|
+
import process2 from "process";
|
|
894
|
+
import { fileURLToPath } from "url";
|
|
893
895
|
var defaultOptions = {
|
|
894
896
|
levelComparison: SORTING_ORDER.ASC,
|
|
895
897
|
levels: DEFAULT_LEVELS,
|
|
@@ -898,7 +900,7 @@ var defaultOptions = {
|
|
|
898
900
|
nestedKey: null,
|
|
899
901
|
enabled: true,
|
|
900
902
|
base: {
|
|
901
|
-
pid:
|
|
903
|
+
pid: process2?.pid ?? 0
|
|
902
904
|
},
|
|
903
905
|
formatters: {
|
|
904
906
|
bindings(bindings) {
|
|
@@ -916,6 +918,8 @@ var defaultOptions = {
|
|
|
916
918
|
depthLimit: 5,
|
|
917
919
|
edgeLimit: 100
|
|
918
920
|
};
|
|
921
|
+
var __filename = fileURLToPath(import.meta.url);
|
|
922
|
+
var __dirname = path.dirname(__filename);
|
|
919
923
|
function getProps(firstArg) {
|
|
920
924
|
const script = path.resolve(
|
|
921
925
|
__dirname,
|