theprogrammablemind_4wp 8.0.0-beta.5 → 8.0.0-beta.50
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 +73 -487
 - package/index.js +3 -2
 - package/package.json +13 -12
 - package/src/config.js +193 -249
 - package/src/configHelpers.js +448 -0
 - package/src/generators.js +8 -8
 - package/src/helpers.js +34 -1
 - package/src/semantics.js +63 -69
 
    
        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 
     | 
| 
      
 18 
     | 
    
         
            +
              where,
         
     | 
| 
       18 
19 
     | 
    
         
             
              stableId: client.stableId,
         
     | 
| 
       19 
     | 
    
         
            -
              w 
     | 
| 
      
 20 
     | 
    
         
            +
              w,
         
     | 
| 
       20 
21 
     | 
    
         
             
              Config,
         
     | 
| 
       21 
22 
     | 
    
         
             
              Semantics,
         
     | 
| 
       22 
23 
     | 
    
         
             
              Semantic,
         
     | 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "devDependencies": {
         
     | 
| 
       3 
     | 
    
         
            -
                "eslint-plugin-import": "^2.23.4",
         
     | 
| 
       4 
     | 
    
         
            -
                "jest": "^29.7.0",
         
     | 
| 
       5 
     | 
    
         
            -
                "@typescript-eslint/parser": "^4.28.4",
         
     | 
| 
       6 
3 
     | 
    
         
             
                "@typescript-eslint/eslint-plugin": "^4.28.4",
         
     | 
| 
       7 
     | 
    
         
            -
                "eslint 
     | 
| 
      
 4 
     | 
    
         
            +
                "@typescript-eslint/parser": "^4.28.4",
         
     | 
| 
      
 5 
     | 
    
         
            +
                "eslint": "^7.31.0",
         
     | 
| 
       8 
6 
     | 
    
         
             
                "eslint-config-standard": "^16.0.3",
         
     | 
| 
      
 7 
     | 
    
         
            +
                "eslint-plugin-import": "^2.23.4",
         
     | 
| 
      
 8 
     | 
    
         
            +
                "eslint-plugin-node": "^11.1.0",
         
     | 
| 
       9 
9 
     | 
    
         
             
                "eslint-plugin-promise": "^5.1.0",
         
     | 
| 
       10 
     | 
    
         
            -
                " 
     | 
| 
      
 10 
     | 
    
         
            +
                "jest": "^29.7.0"
         
     | 
| 
       11 
11 
     | 
    
         
             
              },
         
     | 
| 
       12 
12 
     | 
    
         
             
              "scripts": {
         
     | 
| 
       13 
13 
     | 
    
         
             
                "to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO23",
         
     | 
| 
         @@ -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",
         
     | 
| 
         @@ -52,18 +53,18 @@ 
     | 
|
| 
       52 
53 
     | 
    
         
             
              ],
         
     | 
| 
       53 
54 
     | 
    
         
             
              "author": "dev@thinktelligence.com",
         
     | 
| 
       54 
55 
     | 
    
         
             
              "dependencies": {
         
     | 
| 
      
 56 
     | 
    
         
            +
                "base-64": "^1.0.0",
         
     | 
| 
       55 
57 
     | 
    
         
             
                "deep-equal": "^2.0.4",
         
     | 
| 
       56 
     | 
    
         
            -
                " 
     | 
| 
      
 58 
     | 
    
         
            +
                "fs": "0.0.1-security",
         
     | 
| 
       57 
59 
     | 
    
         
             
                "json-diff": "^1.0.3",
         
     | 
| 
      
 60 
     | 
    
         
            +
                "json-stable-stringify": "^1.0.1",
         
     | 
| 
       58 
61 
     | 
    
         
             
                "lodash": "^4.17.20",
         
     | 
| 
       59 
     | 
    
         
            -
                " 
     | 
| 
       60 
     | 
    
         
            -
                "base-64": "^1.0.0",
         
     | 
| 
       61 
     | 
    
         
            -
                "sort-json": "^2.0.0",
         
     | 
| 
      
 62 
     | 
    
         
            +
                "node-fetch": "^2.6.1",
         
     | 
| 
       62 
63 
     | 
    
         
             
                "readline": "^1.3.0",
         
     | 
| 
       63 
64 
     | 
    
         
             
                "scriptjs": "^2.5.9",
         
     | 
| 
       64 
     | 
    
         
            -
                "json 
     | 
| 
       65 
     | 
    
         
            -
                " 
     | 
| 
      
 65 
     | 
    
         
            +
                "sort-json": "^2.0.0",
         
     | 
| 
      
 66 
     | 
    
         
            +
                "uuid": "^8.3.2"
         
     | 
| 
       66 
67 
     | 
    
         
             
              },
         
     | 
| 
       67 
     | 
    
         
            -
              "version": "8.0.0-beta. 
     | 
| 
      
 68 
     | 
    
         
            +
              "version": "8.0.0-beta.50",
         
     | 
| 
       68 
69 
     | 
    
         
             
              "license": "UNLICENSED"
         
     | 
| 
       69 
70 
     | 
    
         
             
            }
         
     |