ekms 9.6.3 → 9.7.0
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/common/actions.instance.json +2771 -15
- package/common/actions.js +116 -8
- package/common/actions.test.json +79138 -384
- package/common/angle.instance.json +138 -834
- package/common/angle.test.json +172 -127
- package/common/animals.instance.json +260 -0
- package/common/articles.js +1 -2
- package/common/avatar.test.json +173 -33
- package/common/can.instance.json +40 -0
- package/common/colors.instance.json +308 -0
- package/common/comparable.instance.json +120 -0
- package/common/compass.instance.json +63 -18
- package/common/concept.js +2 -1
- package/common/conjunction.js +11 -17
- package/common/control.js +42 -0
- package/common/control.test.json +2 -0
- package/common/crew.instance.json +520 -0
- package/common/dates.instance.json +184 -0
- package/common/dialogues.js +3 -3
- package/common/dimension.instance.json +264 -69
- package/common/dimension.js +5 -5
- package/common/dimension.test.json +545 -441
- package/common/drone.instance.json +15927 -2638
- package/common/drone.js +359 -71
- package/common/drone.test.json +587651 -44132
- package/common/drone_v1.instance.json +492 -59
- package/common/drone_v1.js +9 -9
- package/common/edible.instance.json +696 -0
- package/common/emotions.instance.json +20 -0
- package/common/evaluate.js +1 -1
- package/common/fastfood.instance.json +1310 -216
- package/common/fastfood.js +1 -1
- package/common/formulas.instance.json +20 -5
- package/common/formulas.js +1 -1
- package/common/gdefaults.js +32 -5
- package/common/help.test.json +23 -3
- package/common/helpers/conjunction.js +2 -0
- package/common/helpers/formulas.js +6 -0
- package/common/helpers/properties.js +9 -7
- package/common/helpers.js +11 -6
- package/common/hierarchy.js +2 -0
- package/common/kirk.instance.json +20 -0
- package/common/length.instance.json +1117 -5708
- package/common/length.test.json +29761 -12488
- package/common/logging.js +41 -0
- package/common/logging.test.json +2 -0
- package/common/math.instance.json +30 -12
- package/common/math.js +6 -5
- package/common/menus.instance.json +140 -35
- package/common/meta.js +1 -1
- package/common/nameable.js +7 -9
- package/common/nameable.test.json +252 -150
- package/common/ordering.instance.json +40 -0
- package/common/ordinals.js +51 -5
- package/common/people.instance.json +160 -0
- package/common/pipboy.instance.json +396 -85
- package/common/pipboy.js +1 -1
- package/common/pokemon.instance.json +260 -0
- package/common/pressure.instance.json +108 -370
- package/common/properties.instance.json +20 -0
- package/common/properties.js +5 -4
- package/common/properties.test.json +2754 -2142
- package/common/rates.instance.json +1 -1
- package/common/rates.js +3 -3
- package/common/rates.test.json +6914 -2428
- package/common/reminders.js +1 -1
- package/common/reports.instance.json +49 -176
- package/common/reports.js +2 -2
- package/common/scorekeeper.js +1 -1
- package/common/sdefaults.js +18 -5
- package/common/spock.instance.json +20 -0
- package/common/stm.js +115 -53
- package/common/stm.test.json +2670 -54
- package/common/temperature.instance.json +709 -2284
- package/common/time.instance.json +14333 -2220
- package/common/time.js +48 -2
- package/common/time.test.json +13239 -0
- package/common/tokenize.js +2 -0
- package/common/ui.instance.json +20 -5
- package/common/ui.js +1 -1
- package/common/weight.instance.json +621 -1886
- package/common/wp.instance.json +336 -70
- package/main.js +4 -0
- package/package.json +11 -5
package/main.js
CHANGED
|
@@ -26,6 +26,7 @@ const ordinals = require('./common/ordinals')
|
|
|
26
26
|
const properties = require('./common/properties')
|
|
27
27
|
const sizeable = require('./common/sizeable')
|
|
28
28
|
const dateTimeSelectors = require('./common/dateTimeSelectors')
|
|
29
|
+
const control = require('./common/control')
|
|
29
30
|
const tokenize = require('./common/tokenize')
|
|
30
31
|
const testing = require('./common/testing')
|
|
31
32
|
const drone_v1 = require('./common/drone_v1')
|
|
@@ -36,6 +37,7 @@ const conjunction = require('./common/conjunction')
|
|
|
36
37
|
const dialogues = require('./common/dialogues')
|
|
37
38
|
const gdefaults = require('./common/gdefaults')
|
|
38
39
|
const errors = require('./common/errors')
|
|
40
|
+
const logging = require('./common/logging')
|
|
39
41
|
const meta = require('./common/meta')
|
|
40
42
|
const pos = require('./common/pos')
|
|
41
43
|
const punctuation = require('./common/punctuation')
|
|
@@ -98,6 +100,7 @@ module.exports = {
|
|
|
98
100
|
properties,
|
|
99
101
|
sizeable,
|
|
100
102
|
dateTimeSelectors,
|
|
103
|
+
control,
|
|
101
104
|
tokenize,
|
|
102
105
|
testing,
|
|
103
106
|
drone_v1,
|
|
@@ -108,6 +111,7 @@ module.exports = {
|
|
|
108
111
|
dialogues,
|
|
109
112
|
gdefaults,
|
|
110
113
|
errors,
|
|
114
|
+
logging,
|
|
111
115
|
meta,
|
|
112
116
|
pos,
|
|
113
117
|
punctuation,
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"lint": "eslint \"common/**/*.js\"",
|
|
12
12
|
"tod": "node inspect node_modules/.bin/jest --runInBand -t NEO23",
|
|
13
13
|
"test:debug": "node inspect node_modules/.bin/jest --runInBand --config ./jest.config.json",
|
|
14
|
-
"to": "node node_modules/.bin/jest --runInBand -t NEO23",
|
|
14
|
+
"to": "node node_modules/.bin/jest --runInBand -t NEO23 --silent=false --verbose --useStderr",
|
|
15
15
|
"tos": "node node_modules/.bin/jest --runInBand -t NEOS23",
|
|
16
16
|
"test": "jest --config ./jest.config.json",
|
|
17
17
|
"test:watch": "npm run test -- --watch"
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"name": "Hidden",
|
|
59
59
|
"description": "Don't show in the UI",
|
|
60
60
|
"includes": [
|
|
61
|
+
"control",
|
|
61
62
|
"tokenize",
|
|
62
63
|
"testing",
|
|
63
64
|
"drone_v1"
|
|
@@ -74,6 +75,7 @@
|
|
|
74
75
|
"dialogues",
|
|
75
76
|
"gdefaults",
|
|
76
77
|
"errors",
|
|
78
|
+
"logging",
|
|
77
79
|
"meta",
|
|
78
80
|
"pos",
|
|
79
81
|
"punctuation",
|
|
@@ -112,8 +114,8 @@
|
|
|
112
114
|
]
|
|
113
115
|
},
|
|
114
116
|
{
|
|
115
|
-
"name": "
|
|
116
|
-
"description": "
|
|
117
|
+
"name": "POC's",
|
|
118
|
+
"description": "Various POC related KM's",
|
|
117
119
|
"includes": [
|
|
118
120
|
"javascript",
|
|
119
121
|
"scorekeeper",
|
|
@@ -194,6 +196,8 @@
|
|
|
194
196
|
"common/conjunction.instance.json",
|
|
195
197
|
"common/conjunction.js",
|
|
196
198
|
"common/conjunction.test.json",
|
|
199
|
+
"common/control.js",
|
|
200
|
+
"common/control.test.json",
|
|
197
201
|
"common/countable.js",
|
|
198
202
|
"common/countable.test.json",
|
|
199
203
|
"common/crew.instance.json",
|
|
@@ -268,6 +272,8 @@
|
|
|
268
272
|
"common/length.instance.json",
|
|
269
273
|
"common/length.js",
|
|
270
274
|
"common/length.test.json",
|
|
275
|
+
"common/logging.js",
|
|
276
|
+
"common/logging.test.json",
|
|
271
277
|
"common/math.instance.json",
|
|
272
278
|
"common/math.js",
|
|
273
279
|
"common/math.test.json",
|
|
@@ -386,8 +392,8 @@
|
|
|
386
392
|
"scriptjs": "^2.5.9",
|
|
387
393
|
"table": "^6.7.1",
|
|
388
394
|
"uuid": "^9.0.0",
|
|
389
|
-
"theprogrammablemind": "9.
|
|
395
|
+
"theprogrammablemind": "9.7.0"
|
|
390
396
|
},
|
|
391
|
-
"version": "9.
|
|
397
|
+
"version": "9.7.0",
|
|
392
398
|
"license": "UNLICENSED"
|
|
393
399
|
}
|