summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-08-10 15:52:44 -0700
committerGitHub <noreply@github.com>2023-08-10 15:52:44 -0700
commite07dd52631b78a01402d7569dd976b2505a20f8b (patch)
tree51d20aa637a074eadd2323b30c437dbf7c04ca47 /.vscode/tasks.json
parentb82e61cf8ba2be3bcda00699618a83f7c4db275e (diff)
parent7ca3bea2990d3a1c84d5a544e72827242a78361c (diff)
downloadsncontinue-e07dd52631b78a01402d7569dd976b2505a20f8b.tar.gz
sncontinue-e07dd52631b78a01402d7569dd976b2505a20f8b.tar.bz2
sncontinue-e07dd52631b78a01402d7569dd976b2505a20f8b.zip
Merge pull request #360 from bra1nDump/fixup-search-cross-workspace-polution
Fixup search cross workspace polution
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index c15edf0d..1a29668b 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -7,6 +7,8 @@
"dependsOn": [
// To detect compile errors
"vscode-extension:tsc",
+ // To build the react-app that is used in the extension
+ "vscode-extension:continue-ui:build",
// To bundle the code the same way we do for publishing
"vscode-extension:esbuild"
],
@@ -50,6 +52,20 @@
"clear": true,
},
},
+ // Build the react-app. It gets bundled into the extension as a file resource and has a seprate build step
+ {
+ "label": "vscode-extension:continue-ui:build",
+ "type": "npm",
+ "script": "build",
+ "path": "extension/react-app",
+ "problemMatcher": [
+ "$tsc"
+ ],
+ "presentation": {
+ "revealProblems": "onProblem",
+ "clear": true,
+ },
+ },
//
// Compile and bundle tests
{