Skip to content

Commit

Permalink
tasks: Use tool/yarn (#208)
Browse files Browse the repository at this point in the history
VS Code tasks should use tool/yarn, and not the system-wide yarn.

Signed-off-by: Tyler Smalley <tyler@tailscale.com>
(cherry picked from commit 5ca0d39)
  • Loading branch information
tylersmalley committed Aug 23, 2023
1 parent f6b8806 commit d965ca5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"type": "shell",
"label": "watch",
"command": "./tool/yarn run watch",
"problemMatcher": "$ts-webpack-watch",
"isBackground": true,
"presentation": {
Expand All @@ -18,8 +19,9 @@
}
},
{
"type": "npm",
"script": "watch-tests",
"type": "shell",
"label": "watch-tests",
"command": "./tool/yarn run watch-tests",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
Expand Down

0 comments on commit d965ca5

Please sign in to comment.