From 9a561c9fbf3df39c7675bbf65121f59cc0ebe0e0 Mon Sep 17 00:00:00 2001 From: omckeon Date: Wed, 6 Nov 2024 01:41:56 +0000 Subject: [PATCH] Update build task to single task --- .vscode/tasks.json | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 49fd5e13..fe0f6f34 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,26 +1,11 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format { "version": "2.0.0", "tasks": [ { "label": "Build splashkit.io Website", "type": "shell", - "command": "npm install && npm run build", + "command": "npm install && npm run build && npm start", "group": "build", - "presentation": { - "group": "buildGroup", - "reveal": "always", - "panel": "new", - "echo": false - } - }, - { - "label": "Serve splashkit.io Website", - "type": "shell", - "command": "npm start", - "group": "build", - "dependsOn": "Build splashkit.io Website", "presentation": { "group": "buildGroup", "reveal": "always", @@ -28,8 +13,8 @@ "echo": false }, // "runOptions": { - // "runOn": "folderOpen" // This starts both tasks when the container is started + // "runOn": "folderOpen" // This starts the task automatically // } } ] -} +} \ No newline at end of file