Skip to content

Commit 33244a2

Browse files
committed
Fix broken task settings
1 parent 345b330 commit 33244a2

File tree

1 file changed

+48
-17
lines changed

1 file changed

+48
-17
lines changed

MarkdownConverter.code-workspace

+48-17
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,24 @@
215215
"tasks": [
216216
{
217217
"label": "Clean",
218-
"type": "npm",
219-
"script": "clean",
220-
"problemMatcher": [],
218+
"type": "shell",
219+
"command": "npm",
220+
"args": [
221+
"run",
222+
"clean"
223+
],
221224
"presentation": {
222225
"reveal": "never"
223226
}
224227
},
225228
{
226229
"label": "Build",
227-
"type": "npm",
228-
"script": "watch",
230+
"type": "shell",
231+
"command": "npm",
232+
"args": [
233+
"run",
234+
"watch"
235+
],
229236
"group": {
230237
"kind": "build",
231238
"isDefault": true
@@ -241,8 +248,12 @@
241248
},
242249
{
243250
"label": "Rebuild",
244-
"type": "npm",
245-
"script": "rebuild",
251+
"type": "shell",
252+
"command": "npm",
253+
"args": [
254+
"run",
255+
"rebuild"
256+
],
246257
"group": "build",
247258
"problemMatcher": "$tsc",
248259
"presentation": {
@@ -254,8 +265,12 @@
254265
},
255266
{
256267
"label": "Build Debug",
257-
"type": "npm",
258-
"script": "build-debug",
268+
"type": "shell",
269+
"command": "npm",
270+
"args": [
271+
"run",
272+
"build-debug"
273+
],
259274
"group": "build",
260275
"problemMatcher": [],
261276
"dependsOn": [
@@ -265,8 +280,12 @@
265280
},
266281
{
267282
"label": "Rebuild Debug",
268-
"type": "npm",
269-
"script": "rebuild-debug",
283+
"type": "shell",
284+
"command": "npm",
285+
"args": [
286+
"run",
287+
"rebuild-debug"
288+
],
270289
"group": "build",
271290
"problemMatcher": [],
272291
"dependsOn": [
@@ -275,8 +294,12 @@
275294
},
276295
{
277296
"label": "Build Release",
278-
"type": "npm",
279-
"script": "build-release",
297+
"type": "shell",
298+
"command": "npm",
299+
"args": [
300+
"run",
301+
"build-release"
302+
],
280303
"group": "build",
281304
"problemMatcher": [],
282305
"dependsOn": [
@@ -286,8 +309,12 @@
286309
},
287310
{
288311
"label": "Rebuild Release",
289-
"type": "npm",
290-
"script": "rebuild-release",
312+
"type": "shell",
313+
"command": "npm",
314+
"args": [
315+
"run",
316+
"rebuild-release"
317+
],
291318
"group": "build",
292319
"problemMatcher": [],
293320
"dependsOn": [
@@ -296,8 +323,12 @@
296323
},
297324
{
298325
"label": "Lint",
299-
"type": "npm",
300-
"script": "lint-ide",
326+
"type": "shell",
327+
"command": "npm",
328+
"args": [
329+
"run",
330+
"lint-ide"
331+
],
301332
"group": "build",
302333
"problemMatcher": "$eslint-stylish",
303334
"presentation": {

0 commit comments

Comments
 (0)