ekms 8.9.0-beta.0 → 8.9.0-beta.1
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/crew.instance.json +176 -0
- package/common/fastfood.instance.json +270 -74
- package/common/reports.instance.json +1 -1
- package/common/ui.instance.json +125 -0
- package/common/ui.js +12 -5
- package/common/wp.instance.json +2011 -0
- package/common/wp.js +45 -0
- package/common/wp.test.json +3788 -0
- package/main.js +2 -0
- package/package.json +6 -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
|
},
|
@@ -294,6 +295,9 @@
|
|
294
295
|
"common/weight.instance.json",
|
295
296
|
"common/weight.js",
|
296
297
|
"common/weight.test.json",
|
298
|
+
"common/wp.instance.json",
|
299
|
+
"common/wp.js",
|
300
|
+
"common/wp.test.json",
|
297
301
|
"common/yesno.js",
|
298
302
|
"common/yesno.test.json",
|
299
303
|
"main.js"
|
@@ -310,8 +314,8 @@
|
|
310
314
|
"table": "^6.7.1",
|
311
315
|
"base-64": "^1.0.0",
|
312
316
|
"argparse": "^2.0.1",
|
313
|
-
"theprogrammablemind": "8.9.0-beta.
|
317
|
+
"theprogrammablemind": "8.9.0-beta.1"
|
314
318
|
},
|
315
|
-
"version": "8.9.0-beta.
|
319
|
+
"version": "8.9.0-beta.1",
|
316
320
|
"license": "UNLICENSED"
|
317
321
|
}
|