wikiparser-node 1.1.4 → 1.1.5

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.
@@ -56,6 +56,18 @@
56
56
  {
57
57
  "description": "case-sensitive parser functions",
58
58
  "type": "array",
59
+ "allOf": [
60
+ {
61
+ "contains": {
62
+ "const": "!"
63
+ }
64
+ },
65
+ {
66
+ "contains": {
67
+ "const": "="
68
+ }
69
+ }
70
+ ],
59
71
  "items": {
60
72
  "type": "string"
61
73
  }
@@ -467,7 +467,8 @@
467
467
  "内容语言",
468
468
  "CONTENTLANGUAGE",
469
469
  "CONTENTLANG",
470
- "PAGELANGUAGE"
470
+ "PAGELANGUAGE",
471
+ "="
471
472
  ],
472
473
  [
473
474
  "msg",
@@ -112,7 +112,10 @@
112
112
  "#related": "related",
113
113
  "#cscore": "cscore"
114
114
  },
115
- [],
115
+ [
116
+ "!",
117
+ "="
118
+ ],
116
119
  [
117
120
  "msg",
118
121
  "原始",
@@ -559,7 +559,8 @@
559
559
  "内容语言",
560
560
  "CONTENTLANGUAGE",
561
561
  "CONTENTLANG",
562
- "PAGELANGUAGE"
562
+ "PAGELANGUAGE",
563
+ "="
563
564
  ],
564
565
  [
565
566
  "msg",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wikiparser-node",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "A Node.js parser for MediaWiki markup with AST",
5
5
  "keywords": [
6
6
  "mediawiki",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "scripts": {
29
29
  "toc": "node ./dist/bin/toc.js",
30
- "prepublishOnly": "npm run build; rm dist/internal.js dist/base.js dist/[bmpu]*/*.d.ts; rm -r dist/test; grep -rl --include='*.d.ts' '@private' dist/ | xargs gsed -i '/@private/,+1d'",
30
+ "prepublishOnly": "npm run build; rm dist/internal.js dist/base.js dist/[bmpu]*/*.d.ts; rm -r dist/test",
31
31
  "build": "rm -rf dist/; tsc; grep -rl --include='*.d.ts' '@private' dist/ | xargs gsed -i '/@private/,+1d'",
32
32
  "diff": "git diff --ignore-all-space --color-moved",
33
33
  "lint:ts": "tsc --noEmit && eslint --cache .",