Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Node 10 support for ESM #5303

Merged
merged 1 commit into from May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/linting.yml
Expand Up @@ -9,9 +9,6 @@ on:
branches:
- '**'

env:
CI: true

jobs:
lint:
name: Lint on Node.js ${{ matrix.node }} and ${{ matrix.os }}
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/testing.yml
Expand Up @@ -9,9 +9,6 @@ on:
branches:
- '**'

env:
CI: true

jobs:
test:
name: Test on Node.js ${{ matrix.node }} and ${{ matrix.os }}
Expand All @@ -21,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 16]
node: [12, 14, 16]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -191,6 +191,6 @@
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10.13.0"
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
hudochenkov marked this conversation as resolved.
Show resolved Hide resolved
}
}