@comet/eslint-plugin 9.0.0-canary-20251013121422 → 9.0.0-canary-20251113142723

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 (2) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # @comet/eslint-plugin
2
2
 
3
- ## 9.0.0-canary-20251013121422
3
+ ## 9.0.0-canary-20251113142723
4
+
5
+ ## 8.6.0
6
+
7
+ ## 8.5.2
8
+
9
+ ## 8.5.1
10
+
11
+ ## 8.5.0
12
+
13
+ ## 8.4.2
14
+
15
+ ## 8.4.1
16
+
17
+ ## 8.4.0
4
18
 
5
19
  ## 8.3.0
6
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/eslint-plugin",
3
- "version": "9.0.0-canary-20251013121422",
3
+ "version": "9.0.0-canary-20251113142723",
4
4
  "description": "A set of ESLint rules and configurations for Comet projects",
5
5
  "type": "commonjs",
6
6
  "main": "lib/index.js",
@@ -35,12 +35,12 @@
35
35
  "registry": "https://registry.npmjs.org"
36
36
  },
37
37
  "scripts": {
38
- "build": "$npm_execpath run clean && tsc",
38
+ "build": "pnpm run clean && tsc",
39
39
  "clean": "rimraf lib",
40
40
  "dev": "tsc --watch",
41
41
  "lint": "run-p lint:prettier lint:eslint lint:tsc",
42
42
  "lint:eslint": "eslint --max-warnings 0 src/ **/*.json --no-warn-ignored",
43
- "lint:prettier": "npx prettier --check './**/*.{js,json,md,yml,yaml}'",
43
+ "lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'",
44
44
  "lint:tsc": "tsc",
45
45
  "test": "jest",
46
46
  "test:watch": "jest --watch"