@cspell/dict-en-ca 1.0.2 → 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/en_CA.trie +1 -1
- package/package.json +11 -12
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/en_CA.trie
CHANGED
|
@@ -2831,7 +2831,7 @@ d$l$s$$
|
|
|
2831
2831
|
r
|
|
2832
2832
|
aa#66;<b\'#9;<bed#h7e;<r#c;<2i#la4;<y$2g#ep0;<l#1q4;<st#28m;<$w#2hl;<$ck\'#9;<brain#k6p;<5d#m3b;<ed$r\'#9;<j#lq0;<s$$2
|
|
2833
2833
|
h#cc6;<i#jdn;<le\'#9;<d$s$w#gjb;<$i#c7h;<y$2n#65;<p#29v;<s#ke4;<u#8i9;<$2dle\'#9;<b#fen;<d$so#jdn;<$$
|
|
2834
|
-
i#mf;<3ft\'#9;<e#
|
|
2834
|
+
i#mf;<3ft\'#9;<e#fgb;<i#la4;<sman\'#9;<l#1q4;<s#2cv;<$2e#2a;<2p#mrj;<w#gs9;<$w#m6e;<y$$2g\'#9;<g#om5;<s#ke4;<$k#9vb;<
|
|
2835
2835
|
mb#1v;<me#fj5;<i#mf;<2oi#52b;<2p\'#9;<e#6;<i#19c;<o#6g;<s$$s$$na#28l;<b#7sr;<e#gab;<ial$t#9vb;<2n#1n;<ofa#h5f;<2l#2r1;<
|
|
2836
2836
|
mete#fac;<r#8k;<4t#g3a;<2u#t5;<2k\'#9;<c#m64;<e#6;<i#la4;<l#3b;<p#fq;<s#msm;<y$$ni#5ts;<o#1n;<y#f;<3p\'#9;<e#c;<pe#fj5;<ie#jvv;<
|
|
2837
2837
|
n#1n;<2y$2s\'#9;<hoot#d8e;<4$ule#l90;<o#23;<3y$$quel#inr;<4sh\'#9;<e#g6n;<i#fc0;<$i#9;<se#ffq;<it#qd0;<2l#8k;<n#6ia;<u#krb;<$2
|
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,17 +11,16 @@
|
|
|
11
11
|
"./cspell-ext.json": "./cspell-ext.json"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "
|
|
15
|
-
"sync": "
|
|
14
|
+
"build": "pnpm run compile && pnpm gz",
|
|
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": "gzip -f -k *.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
|
-
"test": "
|
|
23
|
+
"test": "pnpm run test-text"
|
|
25
24
|
},
|
|
26
25
|
"repository": {
|
|
27
26
|
"type": "git",
|
|
@@ -50,8 +49,8 @@
|
|
|
50
49
|
"test": "tests"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@cspell/dict-en-shared": "
|
|
54
|
-
"aoo-mozilla-en-dict": "
|
|
52
|
+
"@cspell/dict-en-shared": "1.0.5",
|
|
53
|
+
"aoo-mozilla-en-dict": "github:marcoagpinto/aoo-mozilla-en-dict"
|
|
55
54
|
},
|
|
56
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "13f40d9d575d21316b7c65a0bd5626e627f69b3b"
|
|
57
56
|
}
|