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.
- package/client.js +1 -1
- package/package.json +1 -1
- 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