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.
1 parent 2b1c5c2 commit c932c99Copy full SHA for c932c99
commands/utils/set_args.js
@@ -371,10 +371,18 @@ function sync_args_from_cmd(args) {
371
);
372
373
if ("npm-f" in args) {
374
- lt_config.run_settings.npmf = args["npm-f"];
+ if (args["npm-f"] == "true") {
375
+ lt_config.run_settings.npmf = true;
376
+ } else {
377
+ lt_config.run_settings.npmf = false;
378
+ }
379
}
380
if ("npm-lpd" in args) {
- lt_config.run_settings.npmlpd = args["npm-lpd"];
381
+ if (args["npm-lpd"] == "true") {
382
+ lt_config.run_settings.npmlpd = true;
383
384
+ lt_config.run_settings.npmlpd = false;
385
386
387
//get specs from current directory if specs are not passed in config or cli
388
if (
0 commit comments