linted 30.15.1 → 30.17.0

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.
@@ -1,36 +1,27 @@
1
1
  name: NPM Publish (RELEASE)
2
- on:
3
- push:
4
- tags:
5
- - v[0-9]+.[0-9]+.[0-9]+
2
+ on: { push: { tags: ['v[0-9]+.[0-9]+.[0-9]+'] } }
6
3
  jobs:
7
4
  publish-release:
8
5
  name: Build/Publish (RELEASE)
9
6
  environment:
10
7
  name: RELEASE
11
8
  url: https://www.npmjs.com/package/linted?activeTab=versions
12
- permissions:
13
- contents: read
9
+ permissions: { contents: read }
14
10
  runs-on: ubuntu-latest
15
11
  steps:
16
12
  - name: Checkout
17
13
  id: checkout
18
14
  uses: actions/checkout@v4
19
- with:
20
- submodules: true
21
- lfs: false
22
15
  - name: Install Node
23
16
  id: node
24
17
  uses: actions/setup-node@v4
25
18
  with:
26
19
  node-version: 22
27
- check-latest: true
28
- registry-url: "https://registry.npmjs.org"
20
+ registry-url: https://registry.npmjs.org
29
21
  - name: Install Dependencies
30
22
  id: ci
31
23
  run: npm ci
32
24
  - name: Publish to NPM
33
25
  id: publish
34
26
  run: npm publish
35
- env:
36
- NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"
27
+ env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
@@ -1,36 +1,27 @@
1
1
  name: NPM Publish (rc)
2
- on:
3
- push:
4
- tags:
5
- - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
2
+ on: { push: { tags: ['v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'] } }
6
3
  jobs:
7
4
  publish-rc:
8
5
  name: Build/Publish (rc)
9
6
  environment:
10
7
  name: rc
11
8
  url: https://www.npmjs.com/package/linted?activeTab=versions
12
- permissions:
13
- contents: read
9
+ permissions: { contents: read }
14
10
  runs-on: ubuntu-latest
15
11
  steps:
16
12
  - name: Checkout
17
13
  id: checkout
18
14
  uses: actions/checkout@v4
19
- with:
20
- submodules: true
21
- lfs: false
22
15
  - name: Install Node
23
16
  id: node
24
17
  uses: actions/setup-node@v4
25
18
  with:
26
19
  node-version: 22
27
- check-latest: true
28
- registry-url: "https://registry.npmjs.org"
20
+ registry-url: https://registry.npmjs.org
29
21
  - name: Install Dependencies
30
22
  id: ci
31
23
  run: npm ci
32
24
  - name: Publish to NPM
33
25
  id: publish
34
26
  run: npm publish
35
- env:
36
- NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"
27
+ env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "linted",
6
- "version": "30.15.1",
6
+ "version": "30.17.0",
7
7
  "repository": "github:jimmy-zhening-luo/linted",
8
8
  "private": false,
9
9
  "engineStrict": true,
@@ -31,17 +31,17 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@eslint/css": "0.10.0",
34
- "@eslint/json": "0.13.1",
35
- "@eslinted/core": "23.1.0",
36
- "@eslinted/defaults": "12.14.2",
37
- "@html-eslint/eslint-plugin": "0.46.0",
34
+ "@eslint/json": "0.13.2",
35
+ "@eslinted/core": "23.1.1",
36
+ "@eslinted/defaults": "12.15.1",
37
+ "@html-eslint/eslint-plugin": "0.46.1",
38
38
  "@stylistic/eslint-plugin": "5.2.3",
39
39
  "eslint-plugin-chai-expect": "3.1.0",
40
40
  "eslint-plugin-chai-friendly": "1.1.0",
41
41
  "eslint-plugin-jsonc": "2.20.1",
42
42
  "eslint-plugin-mocha": "11.1.0",
43
43
  "eslint-plugin-yml": "1.18.0",
44
- "typescript-eslint": "8.40.0"
44
+ "typescript-eslint": "8.41.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/chai": "^5.2.2",