@1024pix/eslint-plugin 2.1.10 → 2.1.12

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.
@@ -7,7 +7,7 @@ jobs:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
9
  - uses: actions/checkout@v5
10
- - uses: actions/setup-node@v4
10
+ - uses: actions/setup-node@v5
11
11
  with:
12
12
  node-version-file: '.nvmrc'
13
13
 
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 22.19.0
1
+ 22.20.0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [2.1.12](https://github.com/1024pix/eslint-plugin/compare/v2.1.11...v2.1.12) (2025-10-01)
2
+
3
+ ### :arrow_up: Montée de version
4
+
5
+ - [#61](https://github.com/1024pix/eslint-plugin/pull/61) Update Node.js to v22.20.0
6
+
7
+ ## [2.1.11](https://github.com/1024pix/eslint-plugin/compare/v2.1.10...v2.1.11) (2025-09-05)
8
+
9
+ ### :arrow_up: Montée de version
10
+
11
+ - [#60](https://github.com/1024pix/eslint-plugin/pull/60) Update actions/setup-node action to v5 (workflows)
12
+
1
13
  ## [2.1.10](https://github.com/1024pix/eslint-plugin/compare/v2.1.9...v2.1.10) (2025-09-03)
2
14
 
3
15
  ### :arrow_up: Montée de version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/eslint-plugin",
3
- "version": "2.1.10",
3
+ "version": "2.1.12",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "type": "module",
6
6
  "engines": {
@@ -6,6 +6,21 @@ const semanticReleaseChangelog =
6
6
  { "changelogTitle": process.env.CHANGELOG_TITLE },
7
7
  ];
8
8
 
9
+ const npmPlugin = process.env.HAS_NPM_PACKAGES === 'true' ? [
10
+ [
11
+ "@semantic-release/npm",
12
+ {
13
+ "npmPublish": process.env.NPM_PUBLISH === "true",
14
+ }
15
+ ],
16
+ [
17
+ "@semantic-release/exec",
18
+ {
19
+ "prepareCmd": "find . -mindepth 2 -maxdepth 3 -name 'package.json' -not -path '*/node_modules/*' -execdir sh -c 'npm version \"$0\" --git-tag-version=false' \"${nextRelease.type}\" \\;",
20
+ }
21
+ ]
22
+ ] : [];
23
+
9
24
  module.exports = {
10
25
  "branches": [
11
26
  "main",
@@ -35,18 +50,7 @@ module.exports = {
35
50
  ],
36
51
  semanticReleaseChangelog,
37
52
  "@semantic-release/github",
38
- [
39
- "@semantic-release/npm",
40
- {
41
- "npmPublish": process.env.NPM_PUBLISH === "true",
42
- }
43
- ],
44
- [
45
- "@semantic-release/exec",
46
- {
47
- "prepareCmd": "find . -mindepth 2 -maxdepth 3 -name 'package.json' -not -path '*/node_modules/*' -execdir sh -c 'npm version \"$0\" --git-tag-version=false' \"${nextRelease.type}\" \\;",
48
- }
49
- ],
53
+ ...npmPlugin,
50
54
  [
51
55
  "@semantic-release/git",
52
56
  {
@@ -1,21 +0,0 @@
1
- name: automerge check
2
-
3
- on:
4
- pull_request:
5
- types:
6
- - labeled
7
- - unlabeled
8
- check_suite:
9
- types:
10
- - completed
11
- status:
12
- types:
13
- - success
14
-
15
- jobs:
16
- automerge:
17
- runs-on: ubuntu-latest
18
- steps:
19
- - uses: 1024pix/pix-actions/auto-merge@v0
20
- with:
21
- auto_merge_token: "${{ secrets.PIX_SERVICE_ACTIONS_TOKEN }}"