@cspell/dict-en-au 1.0.3 → 1.0.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.
- package/README.md +1 -1
- package/en_AU.trie +277 -277
- package/package.json +8 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-en-au",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Australian English dictionary for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,11 +14,10 @@
|
|
|
14
14
|
"build": "pnpm run compile",
|
|
15
15
|
"sync": "pnpm cpy \"node_modules/aoo-mozilla-en-dict/en_AU*/**\" \"src/aoo-mozilla-en-dict\" --flat && pnpm sync-clean",
|
|
16
16
|
"sync-clean": "shx rm -rf \"src/*/wordlist*.txt\" \"src/*/*speller*.txt\"",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"prepare": "cspell-tools-cli gzip \"*.trie\"",
|
|
17
|
+
"compile": "pnpm run sync && cspell-tools-cli build",
|
|
18
|
+
"conditional-build": "pnpm run sync && cspell-tools-cli build --conditional && pnpm gz",
|
|
19
|
+
"gz": "cspell-tools-cli gzip \"*.trie\"",
|
|
20
|
+
"prepare:dictionary": "pnpm gz",
|
|
22
21
|
"prepublishOnly": "echo pre-publish",
|
|
23
22
|
"test-text": "cspell -v -c ./cspell-ext.json --local=en-au --languageId=* \"tests/*.txt\"",
|
|
24
23
|
"test": "pnpm run test-text"
|
|
@@ -50,8 +49,8 @@
|
|
|
50
49
|
"test": "tests"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@cspell/dict-en-shared": "1.0.
|
|
54
|
-
"aoo-mozilla-en-dict": "
|
|
52
|
+
"@cspell/dict-en-shared": "1.0.6",
|
|
53
|
+
"aoo-mozilla-en-dict": "github:marcoagpinto/aoo-mozilla-en-dict"
|
|
55
54
|
},
|
|
56
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "6b07c515cf7d4fce23332637e9a52a878310bb6f"
|
|
57
56
|
}
|