@cspell/dict-npm 2.0.5 → 3.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.
Files changed (3) hide show
  1. package/README.md +7 -11
  2. package/npm.txt.gz +0 -0
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
- # Cspell NPM Dictionary
1
+ # CSpell NPM Dictionary
2
2
 
3
- NPM dictionary for cspell.
3
+ NPM dictionary for CSpell.
4
4
 
5
- This is a pre-built dictionary for use with cspell.
5
+ This is a pre-built dictionary for use with CSpell.
6
6
 
7
7
  ## Installation
8
8
 
9
- Global Install and add to cspell global settings.
9
+ Global Install and add to CSpell global settings.
10
10
 
11
11
  ```sh
12
12
  npm install -g @cspell/dict-npm
13
13
  cspell link add @cspell/dict-npm
14
14
  ```
15
15
 
16
- ## Uninstall from cspell
16
+ ## Uninstall from CSpell
17
17
 
18
18
  ```sh
19
19
  cspell link remove @cspell/dict-npm
@@ -31,13 +31,9 @@ The `cspell-ext.json` file in this package should be added to the import section
31
31
  }
32
32
  ```
33
33
 
34
- ## Building
34
+ # Dictionary Development
35
35
 
36
- Building is only necessary if you want to modify the contents of the dictionary. Note: Building will take a few minutes for large files.
37
-
38
- ```sh
39
- npm run build
40
- ```
36
+ See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
41
37
 
42
38
  ## License
43
39
 
package/npm.txt.gz CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/dict-npm",
3
- "version": "2.0.5",
3
+ "version": "3.0.0",
4
4
  "description": "Dictionary of common NPM packages for cspell.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -11,7 +11,7 @@
11
11
  "./cspell-ext.json": "./cspell-ext.json"
12
12
  },
13
13
  "scripts": {
14
- "build": "cspell-tools compile \"npm.txt\" -o .",
14
+ "build": "cspell-tools-cli compile --split \"npm.txt\" -o .",
15
15
  "test": "head -n 100 \"npm.txt\" | cspell -v -c ./cspell-ext.json \"--local=*\" \"--languageId=javascript\" stdin",
16
16
  "prepublishOnly": "echo pre-publish",
17
17
  "prepare": "yarn run build"
@@ -37,5 +37,5 @@
37
37
  "npm.txt.gz",
38
38
  "cspell-ext.json"
39
39
  ],
40
- "gitHead": "7ec72a12fea27dcfcd570c9dc702f85d8ca9a63f"
40
+ "gitHead": "e7007a48f8fb0ee8ef8fe0c4b54b61ce939596fb"
41
41
  }