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 da64ff0 commit 9aaceb2Copy full SHA for 9aaceb2
tasks/webstorm.js
@@ -124,7 +124,7 @@ function setUpWebStormTask(context) {
124
}
125
126
else if (key === 'launch') {
127
- switch (argv.launch) {
+ switch (String(argv.launch)) {
128
case 'false':
129
break;
130
case 'true':
@@ -209,7 +209,7 @@ function setUpWebStormTask(context) {
209
210
// else run the selected items
211
else {
212
- var launch = (cliArgs.launch !== 'false');
+ var launch = (String(cliArgs.launch) !== 'false');
213
var taskList = [
214
cliArgs.subdir && 'webstorm:subdir',
215
cliArgs.project && 'webstorm:project',
0 commit comments