@open-turo/eslint-config-typescript 23.0.12 → 23.0.14
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/renovate.json
CHANGED
|
@@ -3,14 +3,41 @@ name: Release
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
branches: [main, "[0-9]+.x"]
|
|
6
|
+
pull_request:
|
|
7
|
+
types:
|
|
8
|
+
- opened
|
|
9
|
+
- labeled
|
|
10
|
+
- synchronize
|
|
6
11
|
workflow_dispatch:
|
|
7
12
|
|
|
13
|
+
concurrency:
|
|
14
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
15
|
+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
16
|
+
|
|
17
|
+
permissions:
|
|
18
|
+
contents: write
|
|
19
|
+
issues: read
|
|
20
|
+
pull-requests: read
|
|
21
|
+
id-token: write
|
|
22
|
+
|
|
8
23
|
jobs:
|
|
9
24
|
release:
|
|
10
25
|
name: Release
|
|
11
26
|
runs-on: ubuntu-latest
|
|
27
|
+
if: github.event_name != 'pull_request'
|
|
12
28
|
steps:
|
|
13
29
|
- uses: open-turo/actions-node/release@v7
|
|
14
30
|
with:
|
|
15
31
|
github-token: ${{ secrets.OPEN_TURO_GITHUB_TOKEN }}
|
|
16
|
-
|
|
32
|
+
|
|
33
|
+
prerelease:
|
|
34
|
+
name: Prerelease
|
|
35
|
+
runs-on: ubuntu-latest
|
|
36
|
+
if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'prerelease')
|
|
37
|
+
steps:
|
|
38
|
+
- name: Prerelease
|
|
39
|
+
id: prerelease
|
|
40
|
+
uses: open-turo/actions-node/prerelease@v7
|
|
41
|
+
with:
|
|
42
|
+
github-token: ${{ secrets.OPEN_TURO_GITHUB_TOKEN }}
|
|
43
|
+
create-prerelease: true
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@eslint/js": "9.39.4",
|
|
7
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
8
|
-
"@typescript-eslint/parser": "8.
|
|
9
|
-
"@vitest/eslint-plugin": "1.6.
|
|
7
|
+
"@typescript-eslint/eslint-plugin": "8.61.0",
|
|
8
|
+
"@typescript-eslint/parser": "8.61.0",
|
|
9
|
+
"@vitest/eslint-plugin": "1.6.20",
|
|
10
10
|
"eslint-config-prettier": "10.1.8",
|
|
11
|
-
"eslint-import-resolver-typescript": "4.4.
|
|
11
|
+
"eslint-import-resolver-typescript": "4.4.5",
|
|
12
12
|
"eslint-plugin-import": "2.32.0",
|
|
13
13
|
"eslint-plugin-jest": "29.15.2",
|
|
14
14
|
"eslint-plugin-json": "4.0.1",
|
|
15
|
-
"eslint-plugin-n": "18.0
|
|
15
|
+
"eslint-plugin-n": "18.1.0",
|
|
16
16
|
"eslint-plugin-perfectionist": "5.9.0",
|
|
17
17
|
"eslint-plugin-prettier": "5.5.6",
|
|
18
18
|
"eslint-plugin-sonarjs": "4.0.3",
|
|
19
19
|
"eslint-plugin-unicorn": "56.0.1",
|
|
20
|
-
"typescript-eslint": "8.
|
|
20
|
+
"typescript-eslint": "8.61.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@prettier/plugin-oxc": "0.1.4",
|
|
24
24
|
"eslint": "9.39.4",
|
|
25
25
|
"jest": "30.4.2",
|
|
26
|
-
"prettier": "3.8.
|
|
26
|
+
"prettier": "3.8.4"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">= 20"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"repository": "https://github.com/open-turo/eslint-config-typescript",
|
|
58
|
-
"version": "23.0.
|
|
59
|
-
"packageManager": "npm@11.
|
|
58
|
+
"version": "23.0.14",
|
|
59
|
+
"packageManager": "npm@11.17.0"
|
|
60
60
|
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
name: Prerelease
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
pull_request:
|
|
5
|
-
types:
|
|
6
|
-
- opened
|
|
7
|
-
- labeled
|
|
8
|
-
- synchronize
|
|
9
|
-
concurrency:
|
|
10
|
-
group: ${{ github.workflow }}-${{ github.ref }}
|
|
11
|
-
cancel-in-progress: true
|
|
12
|
-
jobs:
|
|
13
|
-
prerelease:
|
|
14
|
-
name: Prerelease
|
|
15
|
-
runs-on: ubuntu-latest
|
|
16
|
-
if: contains(github.event.pull_request.labels.*.name, 'prerelease')
|
|
17
|
-
steps:
|
|
18
|
-
- name: Prerelease
|
|
19
|
-
id: prerelease
|
|
20
|
-
uses: open-turo/actions-node/prerelease@v7
|
|
21
|
-
with:
|
|
22
|
-
github-token: ${{ secrets.OPEN_TURO_GITHUB_TOKEN }}
|
|
23
|
-
npm-token: ${{ secrets.OPEN_TURO_NPM_TOKEN }}
|
|
24
|
-
create-prerelease: true
|