Skip to content

Commit 9bbb2e1

Browse files
Merge pull request #3579 from NativeScript/vladimirov/node6-deprecation
feat: Deprecate support for Node.js 6.x.x
2 parents f4598fe + c91f534 commit 9bbb2e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/tns

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var path = require("path"),
66
pathToLib = path.join(__dirname, "..", "lib"),
77
pathToCommon = path.join(pathToLib, "common");
88

9-
require(path.join(pathToCommon, "verify-node-version")).verifyNodeVersion(node, "NativeScript", [ "^4.0.0" ]);
9+
require(path.join(pathToCommon, "verify-node-version")).verifyNodeVersion(node, "NativeScript", [ "^6.0.0" ]);
1010

1111
var pathToCliExecutable = path.join(pathToLib, "nativescript-cli.js");
1212

lib/common

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@
116116
},
117117
"license": "Apache-2.0",
118118
"engines": {
119-
"node": ">=6.0.0 <11.0.0"
119+
"node": ">=8.0.0 <11.0.0"
120120
}
121121
}

0 commit comments

Comments
 (0)