tpmkms_4wp 8.0.0-beta.0 → 8.0.0-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +103 -113
- package/common/characters.js +0 -1
- package/common/colors.instance.json +22304 -0
- package/common/colors.js +71 -0
- package/common/colors.test.json +4860 -0
- package/common/concept.js +2 -2
- package/common/crew.instance.json +4142 -3545
- package/common/crew.js +4 -2
- package/common/dialogues.js +34 -7
- package/common/dialogues.test.json +1053 -33
- package/common/dimension.instance.json +20 -30
- package/common/dimension.test.json +289 -312
- package/common/edible.instance.json +216 -156
- package/common/emotions.instance.json +64 -0
- package/common/fastfood.instance.json +1011 -386
- package/common/fastfood.js +1 -1
- package/common/fastfood.test.json +7941 -3647
- package/common/formulas.instance.json +4 -0
- package/common/formulas.test.json +1027 -955
- package/common/help.test.json +14 -10
- package/common/helpers/concept.js +29 -9
- package/common/helpers/dialogues.js +17 -1
- package/common/helpers/formulas.js +0 -14
- package/common/helpers/meta.js +0 -1
- package/common/helpers/properties.js +6 -13
- package/common/kirk.instance.json +4 -0
- package/common/length.instance.json +93 -63
- package/common/math.instance.json +26 -47
- package/common/meta.js +0 -2
- package/common/ordering.instance.json +76 -0
- package/common/people.instance.json +35 -60
- package/common/pipboy.instance.json +215 -229
- package/common/pokemon.instance.json +131 -82
- package/common/pressure.instance.json +38 -48
- package/common/properties.instance.json +4 -0
- package/common/properties.js +7 -7
- package/common/properties.test.json +17605 -4030
- package/common/punctuation.js +8 -0
- package/common/punctuation.test.json +233 -5
- package/common/reports.instance.json +12 -4
- package/common/reports.js +0 -2
- package/common/sizeable.js +7 -2
- package/common/spock.instance.json +4 -0
- package/common/stm.js +16 -5
- package/common/temperature.instance.json +45 -59
- package/common/testing.js +0 -1
- package/common/tokenize.js +2 -1
- package/common/tokenize.test.json +86 -1
- package/common/ui.instance.json +4 -0
- package/common/ui.js +0 -1
- package/common/weight.instance.json +62 -11
- package/common/weight.test.json +242 -238
- package/main.js +2 -0
- package/package.json +6 -2
package/main.js
CHANGED
@@ -3,6 +3,7 @@ const tpm = require('./common/runtime').theprogrammablemind
|
|
3
3
|
const helpers = require('./common/helpers')
|
4
4
|
const currency = require('./common/currency')
|
5
5
|
const numbers = require('./common/numbers')
|
6
|
+
const colors = require('./common/colors')
|
6
7
|
const people = require('./common/people')
|
7
8
|
const time = require('./common/time')
|
8
9
|
const avatar = require('./common/avatar')
|
@@ -50,6 +51,7 @@ Config: tpm.Config,
|
|
50
51
|
defaultContextCheck: helpers.defaultContextCheck,
|
51
52
|
currency,
|
52
53
|
numbers,
|
54
|
+
colors,
|
53
55
|
people,
|
54
56
|
time,
|
55
57
|
avatar,
|
package/package.json
CHANGED
@@ -18,6 +18,7 @@
|
|
18
18
|
"includes": [
|
19
19
|
"currency",
|
20
20
|
"numbers",
|
21
|
+
"colors",
|
21
22
|
"people",
|
22
23
|
"time"
|
23
24
|
]
|
@@ -130,6 +131,9 @@
|
|
130
131
|
"common/avatar.test.json",
|
131
132
|
"common/characters.js",
|
132
133
|
"common/characters.test.json",
|
134
|
+
"common/colors.instance.json",
|
135
|
+
"common/colors.js",
|
136
|
+
"common/colors.test.json",
|
133
137
|
"common/comparable.js",
|
134
138
|
"common/comparable.test.json",
|
135
139
|
"common/concept.instance.json",
|
@@ -269,8 +273,8 @@
|
|
269
273
|
"table": "^6.7.1",
|
270
274
|
"base-64": "^1.0.0",
|
271
275
|
"argparse": "^2.0.1",
|
272
|
-
"theprogrammablemind_4wp": "8.0.0-beta.
|
276
|
+
"theprogrammablemind_4wp": "8.0.0-beta.1"
|
273
277
|
},
|
274
|
-
"version": "8.0.0-beta.
|
278
|
+
"version": "8.0.0-beta.1",
|
275
279
|
"license": "UNLICENSED"
|
276
280
|
}
|