Skip to content

Commit

Permalink
build: drop node v12
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed May 13, 2022
1 parent 238c062 commit 7ef0a1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x]
webpack-version: [latest]

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -12,7 +12,7 @@ module.exports = (api) => {
exclude:
process.env.NODE_ENV === "test" ? [] : ["proposal-dynamic-import"],
targets: {
node: "12.20.0",
node: "14.16.0",
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -14,7 +14,7 @@
"main": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">= 12.20.0"
"node": ">= 14.16.0"
},
"scripts": {
"start": "npm run build -- -w",
Expand Down

0 comments on commit 7ef0a1e

Please sign in to comment.