eslint-config-aether 3.2.0 → 3.2.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/package.json +6 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-aether",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "A custom code style for ESLint.",
|
|
5
5
|
"homepage": "https://github.com/vanruesc/eslint-config-aether",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,25 +36,18 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
|
-
"pnpm": {
|
|
40
|
-
"onlyBuiltDependencies": [
|
|
41
|
-
"esbuild"
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
39
|
"scripts": {
|
|
45
|
-
"
|
|
46
|
-
"build": "run-p build:*",
|
|
47
|
-
"build:js": "node esbuild",
|
|
48
|
-
"build:dts": "tsc -p tsconfig.d.json",
|
|
40
|
+
"build": "node esbuild",
|
|
49
41
|
"clean": "del-cli dist test/generated",
|
|
42
|
+
"dts": "tsc -p tsconfig.d.json",
|
|
50
43
|
"copy": "copyfiles \"test/src/**\" test/generated -u 2",
|
|
51
|
-
"predebug": "
|
|
44
|
+
"predebug": "run-s clean dts build",
|
|
52
45
|
"debug": "eslint --debug src",
|
|
53
46
|
"fix": "eslint --fix test/generated",
|
|
54
47
|
"report": "eslint src --format html --output-file eslintreport.html",
|
|
55
|
-
"pretest": "run-s build copy fix",
|
|
48
|
+
"pretest": "run-s clean dts build copy fix",
|
|
56
49
|
"test": "node --import tsx test/test.ts",
|
|
57
|
-
"prepublishOnly": "
|
|
50
|
+
"prepublishOnly": "run-s test"
|
|
58
51
|
},
|
|
59
52
|
"peerDependencies": {
|
|
60
53
|
"eslint": "10.x.x"
|