summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-11 13:42:59 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-11 13:42:59 -0700
commit4eaf254b3fa974ef8a7ab6b08418ea8283a4f22a (patch)
tree0e6789f8f80e08d0ae497f08c76baa9876bebc34 /.vscode
parent1936f725d226bea2e13d5d88c1dd7a9a02ddd259 (diff)
parent48ee1334dfd21dbe55cf66f39da1249619103e81 (diff)
downloadsncontinue-4eaf254b3fa974ef8a7ab6b08418ea8283a4f22a.tar.gz
sncontinue-4eaf254b3fa974ef8a7ab6b08418ea8283a4f22a.tar.bz2
sncontinue-4eaf254b3fa974ef8a7ab6b08418ea8283a4f22a.zip
Merge branch 'main' into ci-testing
Diffstat (limited to '.vscode')
-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
{