Skip to content

Commit

Permalink
refactor: Remove support for Node v10
Browse files Browse the repository at this point in the history
  • Loading branch information
isaachinman committed Nov 9, 2021
1 parent 048cc36 commit 1bf723f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ commands:
path: cypress/videos

jobs:
node-v10:
docker:
- image: circleci/node:10-browsers
steps:
- build-and-test
node-v12:
docker:
- image: circleci/node:12-browsers
Expand All @@ -36,10 +31,15 @@ jobs:
- image: circleci/node:14-browsers
steps:
- build-and-test
node-v16:
docker:
- image: circleci/node:16-browsers
steps:
- build-and-test

workflows:
node-multi-build:
jobs:
- node-v10
- node-v12
- node-v14
- node-v16
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"types": "dist/types/types.d.ts",
"license": "MIT",
"engines": {
"node": ">=10"
"node": ">=12"
},
"description": "The easiest way to translate your NextJs apps.",
"keywords": [
Expand Down

0 comments on commit 1bf723f

Please sign in to comment.