@cspell/dict-npm 5.0.18 → 5.1.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.
Files changed (3) hide show
  1. package/cspell-ext.json +24 -18
  2. package/dict/npm.txt +1858 -25
  3. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/dict-npm",
3
- "version": "5.0.18",
3
+ "version": "5.1.1",
4
4
  "description": "Dictionary of common NPM packages for cspell.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -11,8 +11,10 @@
11
11
  "./cspell-ext.json": "./cspell-ext.json"
12
12
  },
13
13
  "scripts": {
14
- "build": "cspell-tools-cli compile --split \"src/npm.txt\" --no-compress -o ./dict -m npm",
15
- "test": "shx head -n 100 \"src/npm.txt\" | cspell -c ./cspell-ext.json \"--locale=*\" \"--languageId=javascript\" stdin",
14
+ "conditional-build": "pnpm update-npm-package-list && pnpm run build && pnpm prettier src dict --write",
15
+ "build": "cspell-tools-cli build",
16
+ "test": "cspell samples/list.txt -c ./cspell-ext.json \"--locale=*\" --languageId=javascript",
17
+ "update-npm-package-list": "./scripts/update-npm-package-list.mjs",
16
18
  "prepublishOnly": "echo pre-publish",
17
19
  "prepare:dictionary": "pnpm run build"
18
20
  },
@@ -38,5 +40,5 @@
38
40
  "dict/npm.txt",
39
41
  "cspell-ext.json"
40
42
  ],
41
- "gitHead": "b8789b004022801ab07b2b723885d21af1b01df1"
43
+ "gitHead": "ee85b98778e511967a3e17e345a605e26d6dc691"
42
44
  }