Skip to content

Commit 4943e6b

Browse files
authored
feat!: bump all (dev)Dependencies, drop node < 16.10 (#938)
1 parent 6b2b66f commit 4943e6b

10 files changed

Lines changed: 96 additions & 60 deletions

File tree

.all-contributorsrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,26 @@
320320
"bug",
321321
"code"
322322
]
323+
},
324+
{
325+
"login": "JounQin",
326+
"name": "JounQin",
327+
"avatar_url": "https://avatars.githubusercontent.com/u/8336744?v=4",
328+
"profile": "https://www.1stg.me/",
329+
"contributions": [
330+
"question",
331+
"code",
332+
"design",
333+
"doc",
334+
"ideas",
335+
"infra",
336+
"maintenance",
337+
"plugin",
338+
"projectManagement",
339+
"review",
340+
"test",
341+
"tool"
342+
]
323343
}
324344
],
325345
"repoType": "github",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"prettier-eslint": minor
3+
---
4+
5+
feat!: bump all (dev)Dependencies, drop node < 16.10

.eslintrc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
const config = {
2-
extends: ['kentcdodds', 'kentcdodds/jest'],
2+
extends: [
3+
'kentcdodds',
4+
'kentcdodds/jest',
5+
'plugin:node-dependencies/recommended'
6+
],
37
parserOptions: {
48
ecmaVersion: 2021
59
},

.github/workflows/ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [10.x, 12.x, 14.x]
11+
node-version:
12+
- 10
13+
- 12
14+
- 14
15+
- 16
16+
- 18
17+
- 20
1218

1319
steps:
14-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
1521

1622
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v3
1824
with:
1925
node-version: ${{ matrix.node }}
2026

@@ -25,7 +31,6 @@ jobs:
2531
run: npm start validate
2632

2733
- name: Check test coverage
28-
uses: codecov/codecov-action@v1
34+
uses: codecov/codecov-action@v3
2935
with:
3036
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
31-

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/stale@v1
13+
- uses: actions/stale@v8
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
stale-issue-message: 'Stale issue'

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
registry=https://registry.npmjs.org/
22
package-lock=false
3+
legacy-peer-deps=true

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.20.2

README.md

Lines changed: 45 additions & 41 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,43 +22,39 @@
2222
"dependencies": {
2323
"@changesets/cli": "^2.26.2",
2424
"@types/eslint": "^8.4.2",
25-
"@types/prettier": "^2.6.0",
26-
"@typescript-eslint/parser": "^5.10.0",
25+
"@typescript-eslint/parser": "^6.7.5",
2726
"common-tags": "^1.4.0",
2827
"dlv": "^1.1.0",
2928
"eslint": "^8.7.0",
3029
"indent-string": "^4.0.0",
3130
"lodash.merge": "^4.6.0",
3231
"loglevel-colored-level-prefix": "^1.0.0",
3332
"prettier": "^3.0.1",
34-
"pretty-format": "^23.0.1",
33+
"pretty-format": "^29.7.0",
3534
"require-relative": "^0.8.7",
36-
"typescript": "^4.5.4",
35+
"typescript": "^5.2.2",
3736
"vue-eslint-parser": "^9.1.0"
3837
},
3938
"devDependencies": {
4039
"@babel/cli": "^7.22.9",
4140
"@babel/core": "^7.22.9",
4241
"@babel/preset-env": "^7.22.9",
4342
"@changesets/changelog-github": "^0.4.8",
44-
"acorn": "^6.1.1",
45-
"ajv": "^6.12.2",
4643
"all-contributors-cli": "^6.7.0",
4744
"babel-jest": "^29.6.2",
48-
"chalk": "^2.1.0",
4945
"eslint-config-kentcdodds": "^20.5.0",
46+
"eslint-plugin-node-dependencies": "^0.11.0",
5047
"husky": "^8.0.1",
5148
"jest": "^29.6.2",
5249
"jest-cli": "^29.6.2",
5350
"nps": "^5.7.1",
5451
"nps-utils": "^1.3.0",
55-
"prettier-eslint": "file:.",
56-
"prettier-eslint-cli": "^7.1.0",
57-
"rimraf": "^2.5.4",
52+
"prettier-eslint-cli": "^8.0.0",
53+
"rimraf": "^5.0.5",
5854
"strip-indent": "^3.0.0"
5955
},
6056
"engines": {
61-
"node": ">=10.0.0"
57+
"node": ">=16.10.0"
6258
},
6359
"repository": {
6460
"type": "git",

0 commit comments

Comments
 (0)