linted 30.15.0 → 30.16.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.
@@ -9,28 +9,22 @@ jobs:
|
|
9
9
|
environment:
|
10
10
|
name: RELEASE
|
11
11
|
url: https://www.npmjs.com/package/linted?activeTab=versions
|
12
|
-
permissions:
|
13
|
-
contents: read
|
12
|
+
permissions: { contents: read }
|
14
13
|
runs-on: ubuntu-latest
|
15
14
|
steps:
|
16
15
|
- name: Checkout
|
17
16
|
id: checkout
|
18
17
|
uses: actions/checkout@v4
|
19
|
-
with:
|
20
|
-
submodules: true
|
21
|
-
lfs: false
|
22
18
|
- name: Install Node
|
23
19
|
id: node
|
24
20
|
uses: actions/setup-node@v4
|
25
21
|
with:
|
26
22
|
node-version: 22
|
27
|
-
|
28
|
-
registry-url: "https://registry.npmjs.org"
|
23
|
+
registry-url: https://registry.npmjs.org
|
29
24
|
- name: Install Dependencies
|
30
25
|
id: ci
|
31
26
|
run: npm ci
|
32
27
|
- name: Publish to NPM
|
33
28
|
id: publish
|
34
29
|
run: npm publish
|
35
|
-
env:
|
36
|
-
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
30
|
+
env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
|
package/.github/workflows/rc.yml
CHANGED
@@ -9,28 +9,22 @@ jobs:
|
|
9
9
|
environment:
|
10
10
|
name: rc
|
11
11
|
url: https://www.npmjs.com/package/linted?activeTab=versions
|
12
|
-
permissions:
|
13
|
-
contents: read
|
12
|
+
permissions: { contents: read }
|
14
13
|
runs-on: ubuntu-latest
|
15
14
|
steps:
|
16
15
|
- name: Checkout
|
17
16
|
id: checkout
|
18
17
|
uses: actions/checkout@v4
|
19
|
-
with:
|
20
|
-
submodules: true
|
21
|
-
lfs: false
|
22
18
|
- name: Install Node
|
23
19
|
id: node
|
24
20
|
uses: actions/setup-node@v4
|
25
21
|
with:
|
26
22
|
node-version: 22
|
27
|
-
|
28
|
-
registry-url: "https://registry.npmjs.org"
|
23
|
+
registry-url: https://registry.npmjs.org
|
29
24
|
- name: Install Dependencies
|
30
25
|
id: ci
|
31
26
|
run: npm ci
|
32
27
|
- name: Publish to NPM
|
33
28
|
id: publish
|
34
29
|
run: npm publish
|
35
|
-
env:
|
36
|
-
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
30
|
+
env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
|
package/.mocharc.yml
CHANGED
@@ -1,15 +1,11 @@
|
|
1
1
|
####################
|
2
2
|
### .mocharc ###
|
3
|
-
###
|
3
|
+
### 1107.0.0 ###
|
4
4
|
####################
|
5
5
|
|
6
6
|
# https://mochajs.org/#configuration-format
|
7
7
|
# https://mochajs.org/#command-line-usage
|
8
8
|
|
9
|
-
spec:
|
10
|
-
|
11
|
-
extension:
|
12
|
-
- js
|
13
|
-
- cjs
|
14
|
-
- mjs
|
9
|
+
spec: [dist/**/*.spec.js]
|
10
|
+
extension: [js]
|
15
11
|
# require: dist/_test/hooks.js
|
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.
|
6
|
+
"version": "30.16.0",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted",
|
8
8
|
"private": false,
|
9
9
|
"engineStrict": true,
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"@eslint/css": "0.10.0",
|
34
34
|
"@eslint/json": "0.13.1",
|
35
35
|
"@eslinted/core": "23.1.0",
|
36
|
-
"@eslinted/defaults": "12.
|
36
|
+
"@eslinted/defaults": "12.15.0",
|
37
37
|
"@html-eslint/eslint-plugin": "0.46.0",
|
38
38
|
"@stylistic/eslint-plugin": "5.2.3",
|
39
39
|
"eslint-plugin-chai-expect": "3.1.0",
|