Skip to content

Commit

Permalink
watch-all (#456)
Browse files Browse the repository at this point in the history
* Adding baseline script (it's not fully functional just yet)

* Start watchers in a specific order. Makes the build slower, but prevents out of sync watcher events.

* Run all watchers at same time.

* faster build. use watch-all by default

* Fix package.json
  • Loading branch information
TwitchBronBron authored Jan 9, 2023
1 parent 100070d commit 0270516
Show file tree
Hide file tree
Showing 4 changed files with 425 additions and 19 deletions.
12 changes: 11 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "watch-all",
"type": "shell",
"command": "npm run watch-all --loglevel silent",
"presentation": {
"group": "watch",
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
},
{
"label": "watch",
"type": "shell",
Expand Down Expand Up @@ -50,7 +60,7 @@
}
],
"dependsOn": [
"watch"
"watch-all"
]
},
{
Expand Down
Loading

0 comments on commit 0270516

Please sign in to comment.