@cspell/dict-scientific-terms-us 1.0.21 → 2.0.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/cspell-ext.json CHANGED
@@ -3,11 +3,12 @@
3
3
  "id": "scientific-terms-us",
4
4
  "name": "Scientific Terms US",
5
5
  "description": "Scientific Terms US dictionary for cspell.",
6
+ "readonly": true,
6
7
  // List of dictionary files to add to the global list of dictionaries
7
8
  "dictionaryDefinitions": [
8
9
  {
9
10
  "name": "scientific-terms-us",
10
- "file": "./custom_scientific_US.dic.trie.gz",
11
+ "path": "./custom_scientific_US.dic.trie.gz",
11
12
  "description": "Scientific Terms US dictionary for cspell."
12
13
  }
13
14
  ],
@@ -23,7 +24,7 @@
23
24
  "languageId": "*",
24
25
  // Language local. i.e. en-US, de-AT, or ru. * will match all locals.
25
26
  // Multiple locals can be specified like: "en, en-US" to match both English and English US.
26
- "local": "*",
27
+ "locale": "*",
27
28
  // By default the whole text of a file is included for spell checking
28
29
  // Adding patterns to the "includeRegExpList" to only include matching patterns
29
30
  "includeRegExpList": [],
@@ -35,7 +36,7 @@
35
36
  "patterns": [],
36
37
  // List of dictionaries to enable by name in `dictionaryDefinitions`
37
38
  "dictionaries": ["scientific-terms-us"],
38
- // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "local" match.
39
+ // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "locale" match.
39
40
  "dictionaryDefinitions": []
40
41
  }
41
42
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/dict-scientific-terms-us",
3
- "version": "1.0.21",
3
+ "version": "2.0.0",
4
4
  "description": "Scientific Terms US dictionary for cspell.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -13,7 +13,7 @@
13
13
  "scripts": {
14
14
  "build": "cspell-tools compile-trie \"custom_scientific_US.dic.txt\" -o .",
15
15
  "test": "head -n 1000 \"custom_scientific_US.dic.txt\" | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin",
16
- "prepublishOnly": "yarn test"
16
+ "prepublishOnly": "echo pre-publish"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -31,10 +31,10 @@
31
31
  "bugs": {
32
32
  "url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
33
33
  },
34
- "homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/master/dictionaries/scientific_terms_US#readme",
34
+ "homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/scientific_terms_US#readme",
35
35
  "files": [
36
36
  "custom_scientific_US.dic.trie.gz",
37
37
  "cspell-ext.json"
38
38
  ],
39
- "gitHead": "48d10290053a5c492372ed4221cdb83c835a3bcb"
39
+ "gitHead": "5fe03a7c9c10459a3c50242737f27bcf3e980f5e"
40
40
  }
package/CHANGELOG.md DELETED
@@ -1,40 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.0.21](https://github.com/streetsidesoftware/cspell-dicts/compare/@cspell/dict-scientific-terms-us@1.0.20...@cspell/dict-scientific-terms-us@1.0.21) (2020-11-28)
7
-
8
- **Note:** Version bump only for package @cspell/dict-scientific-terms-us
9
-
10
-
11
-
12
-
13
-
14
- ## 1.0.20 (2020-11-27)
15
-
16
- **Note:** Version bump only for package @cspell/dict-scientific-terms-us
17
-
18
-
19
-
20
-
21
-
22
- ## [1.0.19](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-scientific-terms-us@1.0.18...cspell-dict-scientific-terms-us@1.0.19) (2020-11-21)
23
-
24
- **Note:** Version bump only for package cspell-dict-scientific-terms-us
25
-
26
- ## [1.0.18](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-scientific-terms-us@1.0.17...cspell-dict-scientific-terms-us@1.0.18) (2020-11-08)
27
-
28
- ### Bug Fixes
29
-
30
- - do not include Configstore if not necessary ([#270](https://github.com/streetsidesoftware/cspell-dicts/issues/270)) ([d8b625f](https://github.com/streetsidesoftware/cspell-dicts/commit/d8b625f2f42d5cc6c4a9390216ac1e5037886e44))
31
-
32
- ## [1.0.17](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-scientific-terms-us@1.0.16...cspell-dict-scientific-terms-us@1.0.17) (2020-10-21)
33
-
34
- **Note:** Version bump only for package cspell-dict-scientific-terms-us
35
-
36
- # Change Log
37
-
38
- ## 1.0.0
39
-
40
- - Initial Release