tpmkms_4wp 8.9.0 → 8.9.1-beta.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/animals.instance.json +65 -36
- package/common/articles.js +4 -0
- package/common/colors.instance.json +77 -106
- package/common/comparable.instance.json +15 -0
- package/common/conjunction.js +27 -18
- package/common/countable.js +8 -2
- package/common/countable.test.json +586 -0
- package/common/crew.instance.json +142 -504
- package/common/dialogues.js +14 -11
- package/common/dimension.instance.json +10 -36
- package/common/edible.instance.json +324 -224
- package/common/emotions.instance.json +8 -60
- package/common/fastfood.instance.json +1464 -216
- package/common/formulas.instance.json +10 -0
- package/common/helpers/conjunction.js +75 -0
- package/common/helpers/dialogues.js +14 -8
- package/common/helpers/properties.js +2 -2
- package/common/helpers.js +29 -0
- package/common/hierarchy.js +5 -5
- package/common/hierarchy.test.json +1491 -0
- package/common/kirk.instance.json +5 -0
- package/common/length.instance.json +150 -0
- package/common/math.instance.json +10 -0
- package/common/meta.js +5 -3
- package/common/ordering.instance.json +78 -0
- package/common/people.instance.json +169 -4
- package/common/pipboy.instance.json +203 -177
- package/common/pipboy.js +0 -1
- package/common/pipboy.test.json +494 -251
- package/common/pokemon.instance.json +71 -6
- package/common/pos.js +9 -6
- package/common/pressure.instance.json +40 -0
- package/common/properties.instance.json +5 -44
- package/common/reports.instance.json +21 -1
- package/common/spock.instance.json +5 -0
- package/common/temperature.instance.json +40 -0
- package/common/ui.instance.json +135 -0
- package/common/ui.js +11 -5
- package/common/weight.instance.json +120 -0
- package/common/wp.instance.json +30067 -0
- package/common/wp.js +240 -0
- package/common/wp.test.json +41513 -0
- package/main.js +2 -0
- package/package.json +7 -2
package/main.js
CHANGED
@@ -49,6 +49,7 @@ const scorekeeper = require('./common/scorekeeper')
|
|
49
49
|
const reports = require('./common/reports')
|
50
50
|
const tell = require('./common/tell')
|
51
51
|
const pipboy = require('./common/pipboy')
|
52
|
+
const wp = require('./common/wp')
|
52
53
|
const fastfood = require('./common/fastfood')
|
53
54
|
const characters = require('./common/characters')
|
54
55
|
const crew = require('./common/crew')
|
@@ -108,6 +109,7 @@ module.exports = {
|
|
108
109
|
reports,
|
109
110
|
tell,
|
110
111
|
pipboy,
|
112
|
+
wp,
|
111
113
|
fastfood,
|
112
114
|
characters,
|
113
115
|
crew,
|
package/package.json
CHANGED
@@ -106,6 +106,7 @@
|
|
106
106
|
"reports",
|
107
107
|
"tell",
|
108
108
|
"pipboy",
|
109
|
+
"wp",
|
109
110
|
"fastfood"
|
110
111
|
]
|
111
112
|
},
|
@@ -195,6 +196,7 @@
|
|
195
196
|
"common/help.test.json",
|
196
197
|
"common/helpers.js",
|
197
198
|
"common/helpers/concept.js",
|
199
|
+
"common/helpers/conjunction.js",
|
198
200
|
"common/helpers/dialogues.js",
|
199
201
|
"common/helpers/formulas.js",
|
200
202
|
"common/helpers/frankenhash.js",
|
@@ -294,6 +296,9 @@
|
|
294
296
|
"common/weight.instance.json",
|
295
297
|
"common/weight.js",
|
296
298
|
"common/weight.test.json",
|
299
|
+
"common/wp.instance.json",
|
300
|
+
"common/wp.js",
|
301
|
+
"common/wp.test.json",
|
297
302
|
"common/yesno.js",
|
298
303
|
"common/yesno.test.json",
|
299
304
|
"main.js"
|
@@ -310,8 +315,8 @@
|
|
310
315
|
"table": "^6.7.1",
|
311
316
|
"base-64": "^1.0.0",
|
312
317
|
"argparse": "^2.0.1",
|
313
|
-
"theprogrammablemind_4wp": "8.9.0"
|
318
|
+
"theprogrammablemind_4wp": "8.9.1-beta.0"
|
314
319
|
},
|
315
|
-
"version": "8.9.0",
|
320
|
+
"version": "8.9.1-beta.0",
|
316
321
|
"license": "UNLICENSED"
|
317
322
|
}
|