Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions commands/utils/set_args.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,18 @@ function sync_args_from_cmd(args) {
);

if ("npm-f" in args) {
lt_config.run_settings.npmf = args["npm-f"];
if (args["npm-f"] == "true") {
lt_config.run_settings.npmf = true;
} else {
lt_config.run_settings.npmf = false;
}
}
if ("npm-lpd" in args) {
lt_config.run_settings.npmlpd = args["npm-lpd"];
if (args["npm-lpd"] == "true") {
lt_config.run_settings.npmlpd = true;
} else {
lt_config.run_settings.npmlpd = false;
}
}
//get specs from current directory if specs are not passed in config or cli
if (
Expand Down