Skip to content

Commit

Permalink
change deps installation order and remove build
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvinn Ng committed May 2, 2024
1 parent 794ccf5 commit affba07
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

# echo "Packaging extension..."
# # VSCode Extension (will also package GUI)
# pushd extensions/vscode
# npm install vsce
# npx @vscode/vsce package
# popd

0 comments on commit affba07

Please sign in to comment.