Skip to content

Commit 21a0773

Browse files
chore: clean-up code used for Node.js 4 and 5
In several cases CLI spawns new Node.js processes. On each of these places we have a logic to check if the currently used Node.js version is 4 or 5 and add additional arguments to the process. As we no longer support these versions, clean-up the obsolete logic.
1 parent 1a08b52 commit 21a0773

File tree

11 files changed

+7
-159
lines changed

11 files changed

+7
-159
lines changed

.vscode/launch.json

+1-41
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"program": "${workspaceRoot}/lib/nativescript-cli.js",
1616

1717
// example commands
18-
"args": [ "create", "cliapp"]
18+
"args": [ "create", "cliapp", "--path", "${workspaceRoot}/scratch"]
1919
// "args": [ "test", "android", "--justlaunch"]
2020
// "args": [ "platform", "add", "[email protected]", "--path", "cliapp"]
2121
// "args": [ "platform", "remove", "android", "--path", "cliapp"]
@@ -39,53 +39,13 @@
3939
"sourceMaps": true
4040
},
4141

42-
{
43-
"type": "node",
44-
"runtimeArgs": [
45-
"--harmony"
46-
],
47-
"request": "launch",
48-
"name": "Launch CLI (Node 4, Node 5)",
49-
"program": "${workspaceRoot}/lib/nativescript-cli.js",
50-
"cwd": "${workspaceRoot}",
51-
"sourceMaps": true,
52-
// define the arguments that you would like to pass to CLI, for example
53-
// "args": [ "build", "android", "--justlaunch" ]
54-
"args": [
55-
56-
]
57-
},
58-
59-
{
60-
// in case you want to debug a single test, modify it's code to be `it.only(...` instead of `it(...`
61-
"type": "node",
62-
"runtimeArgs": [
63-
"--harmony"
64-
],
65-
"request": "launch",
66-
"name": "Launch Tests (Node 4, Node 5)",
67-
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
68-
"cwd": "${workspaceRoot}",
69-
"sourceMaps": true
70-
},
71-
7242
{
7343
"type": "node",
7444
"request": "attach",
7545
"name": "Attach to Broker Process",
7646
// In case you want to debug Analytics Broker process, add `--debug-brk=9897` (or --inspect-brk=9897) when spawning analytics-broker-process.
7747
"port": 9897,
7848
"sourceMaps": true
79-
},
80-
81-
{
82-
"type": "node",
83-
"request": "attach",
84-
"name": "Attach to Eqatec Process",
85-
// In case you want to debug Eqatec Analytics process, add `--debug-brk=9855` (or --inspect-brk=9855) when spawning eqatec-analytics-process.
86-
// NOTE: Ensure you set it only for one of the analytics processes.
87-
"port": 9855,
88-
"sourceMaps": true
8949
}
9050

9151
]

bin/tns

+1-25
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,11 @@
22

33
"use strict";
44
var path = require("path"),
5-
node = require("../package.json").engines.node,
65
pathToLib = path.join(__dirname, "..", "lib"),
76
pathToCommon = path.join(pathToLib, "common");
87

98
require(path.join(pathToCommon, "verify-node-version")).verifyNodeVersion();
109

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

13-
var nodeArgs = require(path.join(pathToCommon, "scripts", "node-args")).getNodeArgs();
14-
15-
if (nodeArgs.length) {
16-
// We need custom args for Node process, so pass them here.
17-
var childProcess = require("child_process");
18-
var args = process.argv;
19-
20-
// Remove `node` and `nativescript` from the arguments.
21-
args.shift();
22-
args.shift();
23-
24-
args.unshift(pathToCliExecutable);
25-
26-
args = nodeArgs.concat(args);
27-
28-
var nodeProcess = childProcess.spawn(process.execPath, args, { stdio: "inherit" });
29-
30-
nodeProcess.on("close", function (code) {
31-
// We need this handler so if command fails, we'll exit with same exit code as CLI.
32-
process.exit(code);
33-
});
34-
} else {
35-
require(pathToCliExecutable);
36-
}
12+
require(pathToCliExecutable);

lib/common/scripts/node-args.js

-15
This file was deleted.

lib/common/test-scripts/istanbul.js

-19
This file was deleted.

lib/common/test-scripts/mocha.js

-15
This file was deleted.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"main": "./lib/nativescript-cli-lib.js",
1212
"scripts": {
1313
"setup": "npm i --ignore-scripts && ./node_modules/.bin/grunt",
14-
"test": "node test-scripts/istanbul.js",
14+
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
1515
"postinstall": "node postinstall.js",
1616
"preuninstall": "node preuninstall.js",
1717
"prepack": "grunt prepare",
1818
"postpack": "grunt set_dev_ga_id",
19-
"mocha": "node test-scripts/mocha.js",
19+
"mocha": "mocha",
2020
"tsc": "tsc",
2121
"tslint": "tslint -p tsconfig.json --type-check",
2222
"test-watch": "node ./dev/tsc-to-mocha-watch.js",

postinstall.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ var child_process = require("child_process");
44
var path = require("path");
55
var constants = require(path.join(__dirname, "lib", "constants"));
66
var commandArgs = [path.join(__dirname, "bin", "tns"), constants.POST_INSTALL_COMMAND_NAME];
7-
var nodeArgs = require(path.join(__dirname, "lib", "common", "scripts", "node-args")).getNodeArgs();
87
var helpers = require(path.join(__dirname, "lib", "common", "helpers"));
98
if (helpers.isInstallingNativeScriptGlobally()) {
10-
child_process.spawn(process.argv[0], nodeArgs.concat(commandArgs), { stdio: "inherit" });
9+
child_process.spawn(process.argv[0], commandArgs, { stdio: "inherit" });
1110
}

preuninstall.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
var child_process = require("child_process");
44
var commandArgs = ["bin/tns", "dev-preuninstall"];
5-
var path = require("path");
6-
var nodeArgs = require(path.join(__dirname, "lib", "common", "scripts", "node-args")).getNodeArgs();
75

8-
var child = child_process.exec("node " + nodeArgs.concat(commandArgs).join(" "), function (error) {
6+
var child = child_process.exec("node " + commandArgs.join(" "), function (error) {
97
if (error) {
108
// Some npm versions (3.0, 3.5.1, 3.7.3) remove the NativeScript node_modules before the preuninstall script is executed and the script can't find them (the preuninstall script is like postinstall script).
119
// The issue is described in the npm repository https://github.com/npm/npm/issues/8806 and it is not fixed in version 3.1.1 as commented in the conversation.

test-scripts/istanbul.js

-20
This file was deleted.

test-scripts/mocha.js

-15
This file was deleted.

test/nativescript-cli-lib.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { assert } from "chai";
22
import * as fs from "fs";
33
import * as path from "path";
44
import * as childProcess from "child_process";
5-
const nodeArgs = require(path.join(__dirname, "..", "lib", "common", "scripts", "node-args")).getNodeArgs();
65

76
describe("nativescript-cli-lib", () => {
87
it("is main entry of the package", () => {
@@ -67,7 +66,7 @@ describe("nativescript-cli-lib", () => {
6766
// For example $injector.register("errors", Errors) will add the errors module with its resolver (Errors) to $injector's cache.
6867
// Calling $injector.require("errors", <path to errors file>), that's executed in our bootstrap, will fail, as the module errors is already in the cache.
6968
// In order to workaround this problem, start new process and assert there. This way all files will not be required in it and $injector.require(...) will work correctly.
70-
let testMethod = `"${process.execPath}" ${nodeArgs.join(" ")} -e "` +
69+
let testMethod = `"${process.execPath}" -e "` +
7170
"var assert = require('chai').assert;" +
7271
`var result = require('${pathToEntryPoint}');` +
7372
`assert.ok(result.${moduleName});`;

0 commit comments

Comments
 (0)