theprogrammablemind_4wp 7.5.8-beta.70 → 7.5.8-beta.71

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/runtime.js +3 -1
package/package.json CHANGED
@@ -64,6 +64,6 @@
64
64
  "json-stable-stringify": "^1.0.1",
65
65
  "node-fetch": "^2.6.1"
66
66
  },
67
- "version": "7.5.8-beta.70",
67
+ "version": "7.5.8-beta.71",
68
68
  "license": "ISC"
69
69
  }
package/runtime.js CHANGED
@@ -6,7 +6,9 @@ module.exports = {
6
6
  stdout: "Should not be called in the browser",
7
7
  },
8
8
  child_process: "Should not be called in the browser",
9
- fs: "Should not be called in the browser",
9
+ fs: {
10
+ existsSync: () => false,
11
+ },
10
12
  ArgumentParser: "Should not be called in the browser",
11
13
  readline: "Should not be called in the browser",
12
14
  jsonDiff: "Should not be called in the browser",