tpmkms_4wp 7.4.3 → 7.5.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.
Potentially problematic release.
This version of tpmkms_4wp might be problematic. Click here for more details.
- package/common/dialogues.js +4 -0
- package/common/pipboy.instance.json +2 -0
- package/common/pipboy.js +166 -0
- package/common/pipboy.test.json +1998 -0
- package/common/ui.instance.json +2 -0
- package/common/ui.js +105 -0
- package/common/ui.test.json +780 -0
- package/main.js +4 -0
- package/package.json +9 -3
package/main.js
CHANGED
@@ -14,12 +14,14 @@ const numbers = require('./common/numbers');
|
|
14
14
|
const people = require('./common/people');
|
15
15
|
const ordering = require('./common/ordering');
|
16
16
|
const properties = require('./common/properties');
|
17
|
+
const pipboy = require('./common/pipboy');
|
17
18
|
const reports = require('./common/reports');
|
18
19
|
const scorekeeper = require('./common/scorekeeper');
|
19
20
|
const spock = require('./common/spock');
|
20
21
|
const stgame = require('./common/stgame');
|
21
22
|
const tell = require('./common/tell');
|
22
23
|
const time = require('./common/time');
|
24
|
+
const ui = require('./common/ui');
|
23
25
|
|
24
26
|
module.exports = {
|
25
27
|
Config: tpm.Config,
|
@@ -37,6 +39,7 @@ module.exports = {
|
|
37
39
|
numbers,
|
38
40
|
ordering,
|
39
41
|
properties,
|
42
|
+
pipboy,
|
40
43
|
reports,
|
41
44
|
people,
|
42
45
|
scorekeeper,
|
@@ -44,4 +47,5 @@ module.exports = {
|
|
44
47
|
stgame,
|
45
48
|
tell,
|
46
49
|
time,
|
50
|
+
ui,
|
47
51
|
}
|
package/package.json
CHANGED
@@ -64,6 +64,9 @@
|
|
64
64
|
"common/math.test.json",
|
65
65
|
"common/numbers.js",
|
66
66
|
"common/numbers.test.json",
|
67
|
+
"common/pipboy.js",
|
68
|
+
"common/pipboy.instance.json",
|
69
|
+
"common/pipboy.test.json",
|
67
70
|
"common/people.js",
|
68
71
|
"common/people.instance.json",
|
69
72
|
"common/people.test.json",
|
@@ -93,7 +96,10 @@
|
|
93
96
|
"common/tester.js",
|
94
97
|
"common/tester.test.json",
|
95
98
|
"common/time.js",
|
96
|
-
"common/time.test.json"
|
99
|
+
"common/time.test.json",
|
100
|
+
"common/ui.js",
|
101
|
+
"common/ui.instance.json",
|
102
|
+
"common/ui.test.json"
|
97
103
|
],
|
98
104
|
"author": "dev@thinktelligence.com",
|
99
105
|
"dependencies": {
|
@@ -108,8 +114,8 @@
|
|
108
114
|
"table": "^6.7.1",
|
109
115
|
"base-64": "^1.0.0",
|
110
116
|
"argparse": "^2.0.1",
|
111
|
-
"theprogrammablemind_4wp": "7.
|
117
|
+
"theprogrammablemind_4wp": "7.5.0"
|
112
118
|
},
|
113
|
-
"version": "7.
|
119
|
+
"version": "7.5.0",
|
114
120
|
"license": "ISC"
|
115
121
|
}
|