@cspell/dict-en-ca 1.0.3 → 1.0.4
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/package.json +8 -9
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ npm run build
|
|
|
48
48
|
|
|
49
49
|
## Adding Words
|
|
50
50
|
|
|
51
|
-
Please add any words to [src/additional_words.txt](
|
|
51
|
+
Please add any words to [src/additional_words.txt](https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/en_CA/src/additional_words.txt) by making a pull request.
|
|
52
52
|
|
|
53
53
|
## License
|
|
54
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-en-ca",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Canadian English dictionary for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -11,14 +11,13 @@
|
|
|
11
11
|
"./cspell-ext.json": "./cspell-ext.json"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "pnpm run compile",
|
|
14
|
+
"build": "pnpm run compile && pnpm gz",
|
|
15
15
|
"sync": "pnpm cpy \"node_modules/aoo-mozilla-en-dict/en_CA*/**\" \"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": "cspell-tools-cli build",
|
|
18
|
+
"conditional-build": "pnpm run sync && pnpm compile --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-ca --languageId=* \"tests/*.txt\"",
|
|
24
23
|
"test": "pnpm run test-text"
|
|
@@ -51,7 +50,7 @@
|
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
52
|
"@cspell/dict-en-shared": "1.0.5",
|
|
54
|
-
"aoo-mozilla-en-dict": "
|
|
53
|
+
"aoo-mozilla-en-dict": "github:marcoagpinto/aoo-mozilla-en-dict"
|
|
55
54
|
},
|
|
56
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "13f40d9d575d21316b7c65a0bd5626e627f69b3b"
|
|
57
56
|
}
|