@msobiecki/eslint-config 8.17.2 → 8.26.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.
- package/.commitlintrc +1 -0
- package/.github/workflows/release-publish.yml +9 -24
- package/.releaserc +23 -0
- package/CHANGELOG.md +63 -9
- package/package.json +6 -3
- package/commitlint.config.js +0 -1
package/.commitlintrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "extends": ["@commitlint/config-conventional"] }
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
name: Release publish
|
|
2
|
-
|
|
3
2
|
on:
|
|
4
3
|
push:
|
|
5
4
|
branches: [master]
|
|
6
5
|
|
|
6
|
+
env:
|
|
7
|
+
HUSKY: 0
|
|
8
|
+
|
|
7
9
|
jobs:
|
|
8
10
|
publish:
|
|
9
11
|
runs-on: ubuntu-latest
|
|
@@ -11,6 +13,8 @@ jobs:
|
|
|
11
13
|
permissions:
|
|
12
14
|
packages: write
|
|
13
15
|
contents: write
|
|
16
|
+
issues: write
|
|
17
|
+
pull-requests: write
|
|
14
18
|
|
|
15
19
|
strategy:
|
|
16
20
|
matrix:
|
|
@@ -28,32 +32,13 @@ jobs:
|
|
|
28
32
|
registry-url: https://npm.pkg.github.com
|
|
29
33
|
scope: "@msobiecki"
|
|
30
34
|
|
|
31
|
-
- name: Run version bump
|
|
32
|
-
id: changelog
|
|
33
|
-
uses: TriPSs/conventional-changelog-action@v5.2.1
|
|
34
|
-
with:
|
|
35
|
-
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
36
|
-
skip-on-empty: false
|
|
37
|
-
|
|
38
|
-
- name: Run release
|
|
39
|
-
uses: actions/create-release@v1
|
|
40
|
-
env:
|
|
41
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
42
|
-
with:
|
|
43
|
-
tag_name: ${{ steps.changelog.outputs.tag }}
|
|
44
|
-
release_name: ${{ steps.changelog.outputs.tag }}
|
|
45
|
-
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
46
|
-
|
|
47
35
|
- name: Install dependencies
|
|
48
36
|
run: npm ci
|
|
49
|
-
env:
|
|
50
|
-
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
51
37
|
|
|
52
|
-
- name:
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
38
|
+
- name: Release with semantic-release
|
|
39
|
+
env:
|
|
40
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
41
|
+
run: npx semantic-release
|
|
57
42
|
|
|
58
43
|
- name: Run publish to NPMjs
|
|
59
44
|
uses: JS-DevTools/npm-publish@v3
|
package/.releaserc
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"branches": [
|
|
3
|
+
"master"
|
|
4
|
+
],
|
|
5
|
+
"repositoryUrl": "https://github.com/msobiecki/eslint-config",
|
|
6
|
+
"plugins": [
|
|
7
|
+
"@semantic-release/commit-analyzer",
|
|
8
|
+
"@semantic-release/release-notes-generator",
|
|
9
|
+
"@semantic-release/changelog",
|
|
10
|
+
"@semantic-release/npm",
|
|
11
|
+
"@semantic-release/github",
|
|
12
|
+
[
|
|
13
|
+
"@semantic-release/git",
|
|
14
|
+
{
|
|
15
|
+
"assets": [
|
|
16
|
+
"CHANGELOG.md",
|
|
17
|
+
"package.json"
|
|
18
|
+
],
|
|
19
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
]
|
|
23
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,36 +1,90 @@
|
|
|
1
|
-
|
|
1
|
+
# [8.26.0](https://github.com/msobiecki/eslint-config/compare/v8.25.0...v8.26.0) (2025-07-22)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
### Features
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
* improve semantic release ([3d1db76](https://github.com/msobiecki/eslint-config/commit/3d1db768e1c460eb54c89ba3678f0c44a80b0fa7))
|
|
6
7
|
|
|
8
|
+
# [8.25.0](https://github.com/msobiecki/eslint-config/compare/v8.24.0...v8.25.0) (2025-07-22)
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* improve semantic release ([458c515](https://github.com/msobiecki/eslint-config/commit/458c515226fc614e74f04b8fe2531bfd7791eb35))
|
|
14
|
+
|
|
15
|
+
# [8.24.0](https://github.com/msobiecki/eslint-config/compare/v8.23.0...v8.24.0) (2025-07-22)
|
|
10
16
|
|
|
11
17
|
|
|
12
18
|
### Features
|
|
13
19
|
|
|
14
|
-
*
|
|
20
|
+
* improve semantic release ([2575914](https://github.com/msobiecki/eslint-config/commit/25759149e2f9207505dc0d4199892dcd25913aa8))
|
|
15
21
|
|
|
22
|
+
# [8.23.0](https://github.com/msobiecki/eslint-config/compare/v8.22.0...v8.23.0) (2025-07-22)
|
|
16
23
|
|
|
17
24
|
|
|
18
|
-
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* improve semantic release ([e0b05f5](https://github.com/msobiecki/eslint-config/commit/e0b05f58685886be477524e1fc9dbbb4c1c68b54))
|
|
28
|
+
|
|
29
|
+
# [8.22.0](https://github.com/msobiecki/eslint-config/compare/v8.21.0...v8.22.0) (2025-07-22)
|
|
19
30
|
|
|
20
31
|
|
|
21
32
|
### Features
|
|
22
33
|
|
|
23
|
-
*
|
|
34
|
+
* improve semantic release ([58ce928](https://github.com/msobiecki/eslint-config/commit/58ce928d03d21bf046ecb12eae60d3e1290c4322))
|
|
35
|
+
|
|
36
|
+
# [8.21.0](https://github.com/msobiecki/eslint-config/compare/v8.20.0...v8.21.0) (2025-07-22)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* improve semantic release ([0476e97](https://github.com/msobiecki/eslint-config/commit/0476e9753096fb0e57ba5fa87ae8ab5cc81a2336))
|
|
42
|
+
|
|
43
|
+
# [8.20.0](https://github.com/msobiecki/eslint-config/compare/v8.19.0...v8.20.0) (2025-07-22)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* improve semantic release ([4e083b7](https://github.com/msobiecki/eslint-config/commit/4e083b7dfa197c3a470f355dfd195e19eb45ccb4))
|
|
49
|
+
|
|
50
|
+
# [8.19.0](https://github.com/msobiecki/eslint-config/compare/v8.18.0...v8.19.0) (2025-07-22)
|
|
51
|
+
|
|
24
52
|
|
|
53
|
+
### Features
|
|
25
54
|
|
|
55
|
+
* improve semantic release ([5073232](https://github.com/msobiecki/eslint-config/commit/507323224c21f0b8afe7f6249db810bd51f5d070))
|
|
26
56
|
|
|
27
|
-
# [8.
|
|
57
|
+
# [8.18.0](https://github.com/msobiecki/eslint-config/compare/v8.17.3...v8.18.0) (2025-07-22)
|
|
28
58
|
|
|
29
59
|
|
|
30
60
|
### Features
|
|
31
61
|
|
|
32
|
-
*
|
|
33
|
-
|
|
62
|
+
* improve semantic release ([3456386](https://github.com/msobiecki/eslint-config/commit/3456386d602734f21c4b92bd0d3c5903c7965142))
|
|
63
|
+
|
|
64
|
+
## [8.17.3](https://github.com/msobiecki/eslint-config/compare/v8.17.2...v8.17.3) (2025-07-21)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## [8.17.2](https://github.com/msobiecki/eslint-config/compare/v8.17.1...v8.17.2) (2025-06-04)
|
|
69
|
+
|
|
34
70
|
|
|
35
71
|
|
|
72
|
+
## [8.17.1](https://github.com/msobiecki/eslint-config/compare/v8.17.0...v8.17.1) (2025-06-04)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# [8.17.0](https://github.com/msobiecki/eslint-config/compare/v8.16.0...v8.17.0) (2025-04-17)
|
|
77
|
+
|
|
36
78
|
|
|
79
|
+
### Features
|
|
80
|
+
|
|
81
|
+
* update ([b3498f4](https://github.com/msobiecki/eslint-config/commit/b3498f4a5bfad1562ec73c034e7da34304c917cd))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# [8.16.0](https://github.com/msobiecki/eslint-config/compare/v8.15.0...v8.16.0) (2025-04-17)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
* update ([746ae64](https://github.com/msobiecki/eslint-config/commit/746ae6488763bbad5302e7d223448f1559a1fdec))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@msobiecki/eslint-config",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.26.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An ESLint shareable config for JavaScript/TypeScript ecosystem's.",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"url": "https://github.com/msobiecki/eslint-config/issues"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
|
-
"url": "git://git@github.com
|
|
15
|
+
"url": "git://git@github.com/msobiecki/eslint-config.git"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"author": "Michał Sobiecki <kontakt@codeshaker.pl>",
|
|
@@ -48,6 +48,8 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@commitlint/cli": "^19.5.0",
|
|
50
50
|
"@commitlint/config-conventional": "^19.5.0",
|
|
51
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
52
|
+
"@semantic-release/git": "^10.0.1",
|
|
51
53
|
"@swc/core": "^1.11.21",
|
|
52
54
|
"@swc/jest": "^0.2.37",
|
|
53
55
|
"@types/jest": "^29.5.14",
|
|
@@ -55,7 +57,8 @@
|
|
|
55
57
|
"husky": "^9.1.6",
|
|
56
58
|
"jest": "^29.7.0",
|
|
57
59
|
"lint-staged": "^15.2.10",
|
|
58
|
-
"prettier": "^3.3.3"
|
|
60
|
+
"prettier": "^3.3.3",
|
|
61
|
+
"semantic-release": "^24.2.7"
|
|
59
62
|
},
|
|
60
63
|
"peerDependencies": {
|
|
61
64
|
"eslint": "^8.0.0",
|
package/commitlint.config.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = { extends: ["@commitlint/config-conventional"] };
|