Skip to content

Commit

Permalink
Update build task to single task
Browse files Browse the repository at this point in the history
  • Loading branch information
omckeon committed Nov 6, 2024
1 parent 8d157ef commit 9a561c9
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
// 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",
"panel": "new",
"echo": false
},
// "runOptions": {
// "runOn": "folderOpen" // This starts both tasks when the container is started
// "runOn": "folderOpen" // This starts the task automatically
// }
}
]
}
}

0 comments on commit 9a561c9

Please sign in to comment.