@adobe/eslint-config-helix 3.0.11 → 3.0.13
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/.github/workflows/main.yaml +9 -4
- package/CHANGELOG.md +14 -0
- package/package.json +3 -3
|
@@ -11,10 +11,10 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- uses: actions/checkout@v5
|
|
14
|
-
- name: Use Node.js
|
|
14
|
+
- name: Use Node.js 24.x
|
|
15
15
|
uses: actions/setup-node@v5
|
|
16
16
|
with:
|
|
17
|
-
node-version: '
|
|
17
|
+
node-version: '24.x'
|
|
18
18
|
- run: npm ci
|
|
19
19
|
- run: npm run lint
|
|
20
20
|
- run: npm test
|
|
@@ -32,12 +32,17 @@ jobs:
|
|
|
32
32
|
runs-on: ubuntu-latest
|
|
33
33
|
needs: test
|
|
34
34
|
if: github.ref == 'refs/heads/main'
|
|
35
|
+
permissions:
|
|
36
|
+
contents: write
|
|
37
|
+
issues: write
|
|
38
|
+
pull-requests: write
|
|
39
|
+
id-token: write # needed for npm trusted publishers with OIDC
|
|
35
40
|
steps:
|
|
36
41
|
- uses: actions/checkout@v5
|
|
37
|
-
- name: Use Node.js
|
|
42
|
+
- name: Use Node.js 24.x
|
|
38
43
|
uses: actions/setup-node@v5
|
|
39
44
|
with:
|
|
40
|
-
node-version: '
|
|
45
|
+
node-version: '24.x'
|
|
41
46
|
- run: npm ci
|
|
42
47
|
- run: npm run semantic-release
|
|
43
48
|
env:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.0.13](https://github.com/adobe/helix-eslint-config/compare/v3.0.12...v3.0.13) (2025-11-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#245](https://github.com/adobe/helix-eslint-config/issues/245)) ([ce4e565](https://github.com/adobe/helix-eslint-config/commit/ce4e5653cd83d0518f06411c8a2cddf958ba8aef))
|
|
7
|
+
|
|
8
|
+
## [3.0.12](https://github.com/adobe/helix-eslint-config/compare/v3.0.11...v3.0.12) (2025-10-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update semantic-release to v25 and node to 24.x for OIDC ([f994290](https://github.com/adobe/helix-eslint-config/commit/f99429087b7125c976c2c5de7ff6e5a52424bc68))
|
|
14
|
+
|
|
1
15
|
## [3.0.11](https://github.com/adobe/helix-eslint-config/compare/v3.0.10...v3.0.11) (2025-10-06)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/eslint-config-helix",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"description": "Helix's ESLint config, based on Airbnb's style guide",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/adobe/helix-eslint-config#readme",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@eslint/config-helpers": "0.4.
|
|
29
|
+
"@eslint/config-helpers": "0.4.1",
|
|
30
30
|
"eslint-plugin-import": "2.32.0",
|
|
31
31
|
"globals": "16.4.0"
|
|
32
32
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@semantic-release/changelog": "6.0.3",
|
|
35
35
|
"@semantic-release/git": "10.0.1",
|
|
36
36
|
"eslint": "9.4.0",
|
|
37
|
-
"semantic-release": "
|
|
37
|
+
"semantic-release": "25.0.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"eslint": "^9.0.0"
|