Skip to content

Commit ff4bb4d

Browse files
committedNov 10, 2020
feat: Drop support for Node v6.x & v8.x
BREAKING CHANGE: Node v6.x & v8.x are no longer supported. Please upgrade to the latest LTS release. Here's the gnarly one-liner I used to make these changes: ``` npx lerna exec --concurrency 1 --stream -- 'json -I -f package.json -e '"'"'this.engines=this.engines||{};this.engines.node=">= 10.18.0"'"'" ``` (requires `npm i -g json` beforehand)
1 parent 72414ec commit ff4bb4d

File tree

62 files changed

+66
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+66
-60
lines changed
 

‎commands/add/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"main": "index.js",
2121
"engines": {
22-
"node": ">= 6.9.0"
22+
"node": ">= 10.18.0"
2323
},
2424
"publishConfig": {
2525
"access": "public"

‎commands/bootstrap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"main": "index.js",
2121
"engines": {
22-
"node": ">= 6.9.0"
22+
"node": ">= 10.18.0"
2323
},
2424
"publishConfig": {
2525
"access": "public"

0 commit comments

Comments
 (0)
Please sign in to comment.