theprogrammablemind 7.3.5-beta.27 → 7.3.5-beta.29

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 (3) hide show
  1. package/client.js +1 -1
  2. package/package.json +1 -1
  3. package/runtime.js +1 -0
package/client.js CHANGED
@@ -9,9 +9,9 @@ const stringify = require('json-stable-stringify')
9
9
  const Lines = require('./lines')
10
10
  const flattens = require('./src/flatten')
11
11
  const { appendNoDups, InitCalls } = require('./src/helpers')
12
- const util = require('util')
13
12
  const runtime = require('./runtime')
14
13
  const sortJson = runtime.sortJson
14
+ const util = runtime.util
15
15
 
16
16
  const ask = (config) => (asks) => {
17
17
  for (let ask of asks) {
package/package.json CHANGED
@@ -61,6 +61,6 @@
61
61
  "json-stable-stringify": "^1.0.1",
62
62
  "node-fetch": "^2.6.1"
63
63
  },
64
- "version": "7.3.5-beta.27",
64
+ "version": "7.3.5-beta.29",
65
65
  "license": "ISC"
66
66
  }
package/runtime.js CHANGED
@@ -11,4 +11,5 @@ module.exports = {
11
11
  readline: "Should not be called in the browser",
12
12
  jsonDiff: "Should not be called in the browser",
13
13
  sortJson: "Should not be called in the browser",
14
+ util: "Should not be called in the browser",
14
15
  }