react-saga-redux 1.0.2 → 1.0.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
@@ -939,7 +939,7 @@ var SORTING_ORDER = {
939
939
  };
940
940
 
941
941
  // src/components/Props.ts
942
- var __dirname = process.cwd();
942
+ var import_node_process = __toESM(require("process"));
943
943
  var defaultOptions = {
944
944
  levelComparison: SORTING_ORDER.ASC,
945
945
  levels: DEFAULT_LEVELS,
@@ -948,7 +948,7 @@ var defaultOptions = {
948
948
  nestedKey: null,
949
949
  enabled: true,
950
950
  base: {
951
- pid: process?.pid ?? 0
951
+ pid: import_node_process.default?.pid ?? 0
952
952
  },
953
953
  formatters: {
954
954
  bindings(bindings) {
@@ -968,7 +968,7 @@ var defaultOptions = {
968
968
  };
969
969
  function getProps(firstArg) {
970
970
  const script = import_path.default.resolve(
971
- process.cwd(),
971
+ __dirname,
972
972
  "src/connect/mapProps.js"
973
973
  );
974
974
  const child = (0, import_child_process.spawn)("node", [script, JSON.stringify(firstArg)], {