Skip to content

Commit 2515987

Browse files
dnlkochsimonseyock
authored andcommitted
chore: update dependencies
BREAKING CHANGE: update ol-util peer dependency
1 parent 14760f0 commit 2515987

File tree

8 files changed

+406
-91
lines changed

8 files changed

+406
-91
lines changed

.eslintrc

-18
This file was deleted.

.eslintrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
extends: [
3+
'@terrestris/eslint-config-typescript',
4+
'@terrestris/eslint-config-typescript-react',
5+
'plugin:testing-library/react',
6+
'plugin:jest-dom/recommended'
7+
],
8+
plugins: [
9+
'testing-library',
10+
'jest-dom',
11+
'simple-import-sort'
12+
],
13+
rules: {
14+
'@typescript-eslint/member-ordering': 'off',
15+
'no-underscore-dangle': 'off',
16+
'simple-import-sort/exports': 'warn',
17+
'simple-import-sort/imports': 'warn'
18+
}
19+
};

.github/workflows/on-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
with:
1515
persist-credentials: false
1616

17-
- name: Setup Node.js 18 👷🏻
17+
- name: Setup Node.js 👷🏻
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18
20+
node-version: 20
2121

2222
- name: Cache Node.js modules 💾
2323
uses: actions/cache@v3

.github/workflows/on-pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
- name: Checkout sources 🔰
1010
uses: actions/checkout@v3
1111

12-
- name: Setup Node.js 18
12+
- name: Setup Node.js 👷🏻
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 20
1616

1717
- name: Cache Node.js modules 💾
1818
uses: actions/cache@v3

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout sources 🔰
1616
uses: actions/checkout@v3
1717

18-
- name: Setup Node.js 18 👷🏻
18+
- name: Setup Node.js 👷🏻
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 18
21+
node-version: 20
2222

2323
- name: Install dependencies ⏬
2424
run: npm ci --force

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18
1+
v20

0 commit comments

Comments
 (0)