theprogrammablemind_4wp 8.0.0-beta.8 → 8.0.0-beta.80

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const { Semantics, Semantic } = require('./src/semantics')
2
2
  const { Generators, Generator } = require('./src/generators')
3
3
  const { Config } = require('./src/config')
4
+ const { w, where } = require('./src/helpers')
4
5
  const Digraph = require('./src/digraph')
5
6
  const client = require('./client')
6
7
  const flattens = require('./src/flatten')
@@ -14,9 +15,9 @@ module.exports = {
14
15
  runTests: client.runTests,
15
16
  knowledgeModule: client.knowledgeModule,
16
17
  ensureTestFile: client.ensureTestFile,
17
- where: client.where,
18
+ where,
18
19
  stableId: client.stableId,
19
- w: client.w,
20
+ w,
20
21
  Config,
21
22
  Semantics,
22
23
  Semantic,
package/package.json CHANGED
@@ -43,6 +43,7 @@
43
43
  "src/flatten.js",
44
44
  "src/unflatten.js",
45
45
  "src/config.js",
46
+ "src/configHelpers.js",
46
47
  "src/copy.js",
47
48
  "src/digraph.js",
48
49
  "src/digraph_internal.js",
@@ -64,6 +65,6 @@
64
65
  "sort-json": "^2.0.0",
65
66
  "uuid": "^8.3.2"
66
67
  },
67
- "version": "8.0.0-beta.8",
68
+ "version": "8.0.0-beta.80",
68
69
  "license": "UNLICENSED"
69
70
  }