We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd479c8 + f21d5ad commit c8523f5Copy full SHA for c8523f5
commands/utils/set_args.js
@@ -380,10 +380,18 @@ function sync_args_from_cmd(args) {
380
);
381
382
if ("npm-f" in args) {
383
- lt_config.run_settings.npmf = args["npm-f"];
+ if (args["npm-f"] == "true") {
384
+ lt_config.run_settings.npmf = true;
385
+ } else {
386
+ lt_config.run_settings.npmf = false;
387
+ }
388
}
389
if ("npm-lpd" in args) {
- lt_config.run_settings.npmlpd = args["npm-lpd"];
390
+ if (args["npm-lpd"] == "true") {
391
+ lt_config.run_settings.npmlpd = true;
392
393
+ lt_config.run_settings.npmlpd = false;
394
395
396
//get specs from current directory if specs are not passed in config or cli
397
if (
0 commit comments