Skip to content

Commit 17db060

Browse files
authored
perf(dep): update dependencies to latest version (#1589)
1 parent 783356d commit 17db060

File tree

18 files changed

+4094
-4363
lines changed

18 files changed

+4094
-4363
lines changed

.eslintrc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
"project": "tsconfig.eslint.json",
1313
"sourceType": "module"
1414
},
15-
"plugins": ["@typescript-eslint", "import", "prettier"],
15+
"plugins": ["@typescript-eslint", "import", "prettier", "@stylistic"],
1616
"rules": {
17+
"@stylistic/semi": "error",
1718
"@typescript-eslint/adjacent-overload-signatures": "error",
1819
"@typescript-eslint/array-type": "off",
1920
"@typescript-eslint/ban-types": "off",
@@ -95,7 +96,7 @@
9596
}
9697
],
9798
"@typescript-eslint/interface-name-prefix": "off",
98-
"@typescript-eslint/member-delimiter-style": [
99+
"@stylistic/member-delimiter-style": [
99100
"error",
100101
{
101102
"multiline": {
@@ -121,10 +122,9 @@
121122
"@typescript-eslint/prefer-for-of": "error",
122123
"@typescript-eslint/prefer-function-type": "error",
123124
"@typescript-eslint/prefer-namespace-keyword": "error",
124-
"@typescript-eslint/quotes": ["error", "single"],
125-
"@typescript-eslint/semi": ["error", "always"],
125+
"@stylistic/quotes": ["error", "single"],
126126
"@typescript-eslint/triple-slash-reference": "error",
127-
"@typescript-eslint/type-annotation-spacing": "error",
127+
"@stylistic/type-annotation-spacing": "error",
128128
"@typescript-eslint/unified-signatures": "off",
129129
"@typescript-eslint/ban-ts-ignore": "off",
130130
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "_" }],

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ updates:
99
interval: "daily"
1010
ignore:
1111
- dependency-name: "@types/node"
12-
# This project currently supports node lts/hydrogen
13-
# Ignore anything higher than 18
14-
versions: [ '>=19.0.0' ]
12+
# This project currently supports node lts/iron
13+
# Ignore anything higher than 20
14+
versions: [ '>=20.0.0' ]

.github/workflows/automerge.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ jobs:
1313
automerge:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: automerge
17-
uses: "pascalgn/automerge-action@7ab42e888a333bf77ce865bc84fedc6a365a3548"
16+
- id: automerge
17+
name: automerge
18+
uses: "pascalgn/[email protected]"
19+
permissions:
20+
contents: write
1821
env:
1922
MERGE_METHOD: "rebase"
2023
MERGE_LABELS: "ts-auto-mock-automerge"

.github/workflows/definitely-type-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [ lts/hydrogen ]
18+
node-version: [ lts/iron ]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/definitelyTyped.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [ lts/hydrogen ]
11+
node-version: [ lts/iron ]
1212

1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [ lts/hydrogen ]
17+
node-version: [ lts/iron ]
1818

1919
steps:
2020
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [ lts/hydrogen ]
15+
node-version: [ lts/iron ]
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [ lts/hydrogen ]
18+
node-version: [ lts/iron ]
1919

2020
steps:
2121
- uses: actions/checkout@v3
@@ -31,9 +31,14 @@ jobs:
3131
npm run ts-patch:install
3232
npm run build
3333
npm test
34+
3435
check-type:
3536
runs-on: ubuntu-latest
3637

38+
strategy:
39+
matrix:
40+
node-version: [ lts/iron ]
41+
3742
steps:
3843
- uses: actions/checkout@v3
3944
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)