From affba0763003633fd9178f1a516a7f69445cb94f Mon Sep 17 00:00:00 2001 From: Calvinn Ng Date: Thu, 2 May 2024 10:47:43 +0800 Subject: [PATCH] change deps installation order and remove build --- install-dependencies.sh | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/install-dependencies.sh b/install-dependencies.sh index cea4d1075..1dc7fa5f5 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -13,23 +13,25 @@ popd echo "Installing GUI extension dependencies..." pushd gui npm install -echo "Linking core" npm link @continuedev/core -echo "Done linking core" -npm run build popd -# VSCode Extension (will also package GUI) + echo "Installing VSCode extension dependencies..." pushd extensions/vscode - # This does way too many things inline but is the common denominator between many of the scripts npm install npm link @continuedev/core -npm run package +popd +echo "Building GUI..." +pushd gui +npm run build popd -echo "Installing binary dependencies..." -pushd binary -npm install -npm run build \ No newline at end of file + +# echo "Packaging extension..." +# # VSCode Extension (will also package GUI) +# pushd extensions/vscode +# npm install vsce +# npx @vscode/vsce package +# popd \ No newline at end of file