-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
// } | ||
} | ||
] | ||
} | ||
} |