Skip to content

Commit

Permalink
perf(dep): update dependencies to latest version (#1589)
Browse files Browse the repository at this point in the history
  • Loading branch information
uittorio authored Aug 24, 2024
1 parent 783356d commit 17db060
Show file tree
Hide file tree
Showing 18 changed files with 4,094 additions and 4,363 deletions.
10 changes: 5 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
"project": "tsconfig.eslint.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import", "prettier"],
"plugins": ["@typescript-eslint", "import", "prettier", "@stylistic"],
"rules": {
"@stylistic/semi": "error",
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/ban-types": "off",
Expand Down Expand Up @@ -95,7 +96,7 @@
}
],
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/member-delimiter-style": [
"@stylistic/member-delimiter-style": [
"error",
{
"multiline": {
Expand All @@ -121,10 +122,9 @@
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/quotes": ["error", "single"],
"@typescript-eslint/semi": ["error", "always"],
"@stylistic/quotes": ["error", "single"],
"@typescript-eslint/triple-slash-reference": "error",
"@typescript-eslint/type-annotation-spacing": "error",
"@stylistic/type-annotation-spacing": "error",
"@typescript-eslint/unified-signatures": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "_" }],
Expand Down
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ updates:
interval: "daily"
ignore:
- dependency-name: "@types/node"
# This project currently supports node lts/hydrogen
# Ignore anything higher than 18
versions: [ '>=19.0.0' ]
# This project currently supports node lts/iron
# Ignore anything higher than 20
versions: [ '>=20.0.0' ]
7 changes: 5 additions & 2 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "pascalgn/automerge-action@7ab42e888a333bf77ce865bc84fedc6a365a3548"
- id: automerge
name: automerge
uses: "pascalgn/automerge-action@v0.16.3"
permissions:
contents: write
env:
MERGE_METHOD: "rebase"
MERGE_LABELS: "ts-auto-mock-automerge"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/definitely-type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [ lts/hydrogen ]
node-version: [ lts/iron ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/definitelyTyped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [ lts/hydrogen ]
node-version: [ lts/iron ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [ lts/hydrogen ]
node-version: [ lts/iron ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/hydrogen ]
node-version: [ lts/iron ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [ lts/hydrogen ]
node-version: [ lts/iron ]

steps:
- uses: actions/checkout@v3
Expand All @@ -31,9 +31,14 @@ jobs:
npm run ts-patch:install
npm run build
npm test
check-type:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ lts/iron ]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
Loading

0 comments on commit 17db060

Please sign in to comment.