Skip to content

Commit

Permalink
feat!: bump all (dev)Dependencies, drop node < 16.10 (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Oct 14, 2023
1 parent 6b2b66f commit 4943e6b
Show file tree
Hide file tree
Showing 10 changed files with 96 additions and 60 deletions.
20 changes: 20 additions & 0 deletions .all-contributorsrc
Expand Up @@ -320,6 +320,26 @@
"bug",
"code"
]
},
{
"login": "JounQin",
"name": "JounQin",
"avatar_url": "https://avatars.githubusercontent.com/u/8336744?v=4",
"profile": "https://www.1stg.me/",
"contributions": [
"question",
"code",
"design",
"doc",
"ideas",
"infra",
"maintenance",
"plugin",
"projectManagement",
"review",
"test",
"tool"
]
}
],
"repoType": "github",
Expand Down
5 changes: 5 additions & 0 deletions .changeset/violet-mayflies-think.md
@@ -0,0 +1,5 @@
---
"prettier-eslint": minor
---

feat!: bump all (dev)Dependencies, drop node < 16.10
6 changes: 5 additions & 1 deletion .eslintrc.js
@@ -1,5 +1,9 @@
const config = {
extends: ['kentcdodds', 'kentcdodds/jest'],
extends: [
'kentcdodds',
'kentcdodds/jest',
'plugin:node-dependencies/recommended'
],
parserOptions: {
ecmaVersion: 2021
},
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -8,13 +8,19 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version:
- 10
- 12
- 14
- 16
- 18
- 20

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand All @@ -25,7 +31,6 @@ jobs:
run: npm start validate

- name: Check test coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue'
Expand Down
1 change: 1 addition & 0 deletions .npmrc
@@ -1,2 +1,3 @@
registry=https://registry.npmjs.org/
package-lock=false
legacy-peer-deps=true
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
16.20.2
86 changes: 45 additions & 41 deletions README.md

Large diffs are not rendered by default.

18 changes: 7 additions & 11 deletions package.json
Expand Up @@ -22,43 +22,39 @@
"dependencies": {
"@changesets/cli": "^2.26.2",
"@types/eslint": "^8.4.2",
"@types/prettier": "^2.6.0",
"@typescript-eslint/parser": "^5.10.0",
"@typescript-eslint/parser": "^6.7.5",
"common-tags": "^1.4.0",
"dlv": "^1.1.0",
"eslint": "^8.7.0",
"indent-string": "^4.0.0",
"lodash.merge": "^4.6.0",
"loglevel-colored-level-prefix": "^1.0.0",
"prettier": "^3.0.1",
"pretty-format": "^23.0.1",
"pretty-format": "^29.7.0",
"require-relative": "^0.8.7",
"typescript": "^4.5.4",
"typescript": "^5.2.2",
"vue-eslint-parser": "^9.1.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@changesets/changelog-github": "^0.4.8",
"acorn": "^6.1.1",
"ajv": "^6.12.2",
"all-contributors-cli": "^6.7.0",
"babel-jest": "^29.6.2",
"chalk": "^2.1.0",
"eslint-config-kentcdodds": "^20.5.0",
"eslint-plugin-node-dependencies": "^0.11.0",
"husky": "^8.0.1",
"jest": "^29.6.2",
"jest-cli": "^29.6.2",
"nps": "^5.7.1",
"nps-utils": "^1.3.0",
"prettier-eslint": "file:.",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^2.5.4",
"prettier-eslint-cli": "^8.0.0",
"rimraf": "^5.0.5",
"strip-indent": "^3.0.0"
},
"engines": {
"node": ">=10.0.0"
"node": ">=16.10.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 4943e6b

Please sign in to comment.