@cspell/dict-scientific-terms-us 3.0.0 → 3.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/cspell-ext.json CHANGED
@@ -16,13 +16,13 @@
16
16
  // Generally left empty
17
17
  "dictionaries": [],
18
18
  // Language Rules to apply to matching files.
19
- // Files are matched on `languageId` and `local`
19
+ // Files are matched on `languageId` and `locale`
20
20
  "languageSettings": [
21
21
  {
22
22
  // VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex
23
23
  // * will match against any file type.
24
24
  "languageId": "*",
25
- // Language local. i.e. en-US, de-AT, or ru. * will match all locals.
25
+ // Language locale. i.e. en-US, de-AT, or ru. * will match all locals.
26
26
  // Multiple locals can be specified like: "en, en-US" to match both English and English US.
27
27
  "locale": "*",
28
28
  // By default the whole text of a file is included for spell checking
Binary file
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@cspell/dict-scientific-terms-us",
3
- "version": "3.0.0",
3
+ "version": "3.0.4",
4
4
  "description": "Scientific Terms US dictionary for cspell.",
5
5
  "publishConfig": {
6
- "access": "public"
6
+ "access": "public",
7
+ "provenance": true
7
8
  },
8
9
  "exports": {
9
10
  ".": "./cspell-ext.json",
@@ -12,14 +13,16 @@
12
13
  },
13
14
  "scripts": {
14
15
  "build": "cspell-tools-cli build && pnpm gz",
15
- "test": "shx head -n 1000 \"src/custom_scientific_US.dic.txt\" | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin",
16
- "gz": "cspell-tools-cli gzip *.trie",
17
- "prepare": "pnpm gz",
16
+ "conditional-build": "cspell-tools-cli build --conditional && pnpm gz",
17
+ "test": "shx head -n 1000 \"src/custom_scientific_US.dic.txt\" | cspell -c ./cspell-ext.json --locale=en --languageId=* stdin",
18
+ "gz": "cspell-tools-cli gzip \"*.trie\"",
19
+ "prepare:dictionary": "pnpm gz",
18
20
  "prepublishOnly": "echo pre-publish"
19
21
  },
20
22
  "repository": {
21
23
  "type": "git",
22
- "url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
24
+ "url": "https://github.com/streetsidesoftware/cspell-dicts",
25
+ "directory": "dictionaries/scientific_terms_US"
23
26
  },
24
27
  "keywords": [
25
28
  "cspell",
@@ -28,7 +31,7 @@
28
31
  "dictionary",
29
32
  "spelling"
30
33
  ],
31
- "author": "Jason Dent",
34
+ "author": "Street Side Software <support@streetsidesoftware.nl>",
32
35
  "license": "MIT",
33
36
  "bugs": {
34
37
  "url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
@@ -38,5 +41,5 @@
38
41
  "custom_scientific_US.trie.gz",
39
42
  "cspell-ext.json"
40
43
  ],
41
- "gitHead": "a93ee20360d9a76828b8c40653a0eb253dd34f2b"
44
+ "gitHead": "4d80f37a50593b93afd0876b09ec3c879fedf021"
42
45
  }