tpmkms_4wp 9.4.4-beta.1 → 9.4.5-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/colors.instance.json +0 -28
- package/common/crew.instance.json +72 -0
- package/common/dates.instance.json +2 -84
- package/common/dates.js +1 -0
- package/common/edible.instance.json +648 -1471
- package/common/fastfood.instance.json +703 -3812
- package/common/latin.js +17 -11
- package/common/percentages.js +1 -0
- package/common/pipboy.instance.json +0 -56
- package/common/reports.instance.json +2 -2
- package/common/reports.js +4 -1
- package/common/reports.test.json +5547 -4514
- package/common/tokenize.js +18 -2
- package/common/wp.instance.json +0 -56
- package/package.json +2 -2
package/common/tokenize.js
CHANGED
@@ -14,8 +14,24 @@ const config = {
|
|
14
14
|
],
|
15
15
|
words: {
|
16
16
|
patterns: [
|
17
|
-
{
|
18
|
-
|
17
|
+
{
|
18
|
+
pattern: [{ type: 'space' }, { repeat: true, is_space: true }],
|
19
|
+
defs: [ { remove: true } ]
|
20
|
+
},
|
21
|
+
{
|
22
|
+
pattern: [{ type: 'alphanumeric' }, { repeat: true }],
|
23
|
+
|
24
|
+
// left: 'before[0] is not word',
|
25
|
+
// right: 'after[0] is not word',
|
26
|
+
|
27
|
+
scale: 0.8,
|
28
|
+
check_spelling: true,
|
29
|
+
is_unknown: true,
|
30
|
+
allow_partial_matches: false,
|
31
|
+
defs: [
|
32
|
+
{ id: 'unknown', initial: "{ value: text, unknown: true }" }
|
33
|
+
]
|
34
|
+
},
|
19
35
|
],
|
20
36
|
hierarchy: [
|
21
37
|
{ child: ' ', parent: 'space' },
|
package/common/wp.instance.json
CHANGED
@@ -24780,20 +24780,6 @@
|
|
24780
24780
|
0
|
24781
24781
|
]
|
24782
24782
|
],
|
24783
|
-
[
|
24784
|
-
[
|
24785
|
-
"is",
|
24786
|
-
0
|
24787
|
-
],
|
24788
|
-
[
|
24789
|
-
"list",
|
24790
|
-
1
|
24791
|
-
],
|
24792
|
-
[
|
24793
|
-
"unknown",
|
24794
|
-
0
|
24795
|
-
]
|
24796
|
-
],
|
24797
24783
|
[
|
24798
24784
|
[
|
24799
24785
|
"is",
|
@@ -48256,20 +48242,6 @@
|
|
48256
48242
|
0
|
48257
48243
|
]
|
48258
48244
|
],
|
48259
|
-
[
|
48260
|
-
[
|
48261
|
-
"is",
|
48262
|
-
0
|
48263
|
-
],
|
48264
|
-
[
|
48265
|
-
"list",
|
48266
|
-
1
|
48267
|
-
],
|
48268
|
-
[
|
48269
|
-
"unknown",
|
48270
|
-
0
|
48271
|
-
]
|
48272
|
-
],
|
48273
48245
|
[
|
48274
48246
|
[
|
48275
48247
|
"is",
|
@@ -54873,34 +54845,6 @@
|
|
54873
54845
|
0
|
54874
54846
|
]
|
54875
54847
|
],
|
54876
|
-
[
|
54877
|
-
[
|
54878
|
-
"is",
|
54879
|
-
0
|
54880
|
-
],
|
54881
|
-
[
|
54882
|
-
"list",
|
54883
|
-
1
|
54884
|
-
],
|
54885
|
-
[
|
54886
|
-
"unknown",
|
54887
|
-
0
|
54888
|
-
]
|
54889
|
-
],
|
54890
|
-
[
|
54891
|
-
[
|
54892
|
-
"is",
|
54893
|
-
0
|
54894
|
-
],
|
54895
|
-
[
|
54896
|
-
"list",
|
54897
|
-
1
|
54898
|
-
],
|
54899
|
-
[
|
54900
|
-
"unknown",
|
54901
|
-
0
|
54902
|
-
]
|
54903
|
-
],
|
54904
54848
|
[
|
54905
54849
|
[
|
54906
54850
|
"is",
|
package/package.json
CHANGED
@@ -351,8 +351,8 @@
|
|
351
351
|
"scriptjs": "^2.5.9",
|
352
352
|
"table": "^6.7.1",
|
353
353
|
"uuid": "^9.0.0",
|
354
|
-
"theprogrammablemind_4wp": "9.4.
|
354
|
+
"theprogrammablemind_4wp": "9.4.5-beta.0"
|
355
355
|
},
|
356
|
-
"version": "9.4.
|
356
|
+
"version": "9.4.5-beta.0",
|
357
357
|
"license": "UNLICENSED"
|
358
358
|
}
|