Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
Fix extension watch task
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos committed Nov 27, 2023
1 parent 1eca330 commit 200cb76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"${workspaceFolder}/sampleWorkspace"
],
"outFiles": ["${workspaceFolder}/extension/dist/**/*.js"],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: extension watch"
},
{
"name": "Server",
Expand Down
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
},
{
"type": "npm",
"script": "watch",
"script": "extension:watch",
"group": "build",
"problemMatcher": "$esbuild-watch",
"isBackground": true,
"label": "npm: watch"
"label": "npm: extension watch"
},
{
"type": "npm",
"script": "watch-web",
"script": "extension:watch-web",
"group": "build",
"problemMatcher": "$esbuild-watch",
"isBackground": true,
"label": "npm: watch web"
"label": "npm: extension watch web"
}
]
}

0 comments on commit 200cb76

Please sign in to comment.