@cspell/dict-npm 2.0.4 → 3.0.1
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 +7 -11
- package/npm.txt.gz +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CSpell NPM Dictionary
|
|
2
2
|
|
|
3
|
-
NPM dictionary for
|
|
3
|
+
NPM dictionary for CSpell.
|
|
4
4
|
|
|
5
|
-
This is a pre-built dictionary for use with
|
|
5
|
+
This is a pre-built dictionary for use with CSpell.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
Global Install and add to
|
|
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
|
|
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
|
-
|
|
34
|
+
# Dictionary Development
|
|
35
35
|
|
|
36
|
-
|
|
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": "
|
|
3
|
+
"version": "3.0.1",
|
|
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": "
|
|
40
|
+
"gitHead": "fba0107e4ff6ff74f739f19db80f1a27495c6dc8"
|
|
41
41
|
}
|