@cspell/eslint-plugin 6.6.0 → 6.6.1-alpha.2
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "6.6.
|
|
6
|
+
"version": "6.6.1-alpha.2",
|
|
7
7
|
"description": "[WIP] CSpell ESLint plugin",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"cspell",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"!**/*.map"
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
|
-
"build": "
|
|
36
|
+
"build": "pnpm run build-schema && pnpm run build-rollup",
|
|
37
37
|
"build-rollup": "rollup --config rollup.config.ts --configPlugin typescript",
|
|
38
38
|
"build-schema": "ts-json-schema-generator --no-top-ref --expose none --path src/options.ts --type Options -o ./src/_auto_generated_/options.schema.json",
|
|
39
|
-
"watch": "
|
|
39
|
+
"watch": "pnpm run build-rollup -- --watch",
|
|
40
40
|
"clean": "rimraf dist coverage .tsbuildinfo",
|
|
41
|
-
"clean-build": "
|
|
41
|
+
"clean-build": "pnpm run clean && pnpm run build",
|
|
42
42
|
"coverage": "echo coverage",
|
|
43
|
-
"test-watch": "
|
|
43
|
+
"test-watch": "pnpm run test -- --watch",
|
|
44
44
|
"test": "npx mocha --timeout 10000 \"dist/**/*.test.js\""
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"@rollup/plugin-typescript": "^8.3.4",
|
|
61
61
|
"@types/eslint": "^8.4.5",
|
|
62
62
|
"@types/estree": "^1.0.0",
|
|
63
|
-
"@types/node": "^18.6.
|
|
64
|
-
"@typescript-eslint/parser": "^5.
|
|
65
|
-
"@typescript-eslint/types": "^5.
|
|
66
|
-
"@typescript-eslint/typescript-estree": "^5.
|
|
63
|
+
"@types/node": "^18.6.5",
|
|
64
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
65
|
+
"@typescript-eslint/types": "^5.33.0",
|
|
66
|
+
"@typescript-eslint/typescript-estree": "^5.33.0",
|
|
67
67
|
"eslint": "^8.21.0",
|
|
68
68
|
"eslint-plugin-react": "^7.30.1",
|
|
69
69
|
"mocha": "^10.0.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"ts-json-schema-generator": "^1.0.0"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"cspell-lib": "^6.6.
|
|
76
|
+
"cspell-lib": "^6.6.1-alpha.2"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "9bb5defa93582d5c27ff5be88006f33493940e78"
|
|
79
79
|
}
|