Skip to content

Commit d0e0cca

Browse files
author
Calvinn Ng
committed
add debugging lines in install-dependencies.sh
1 parent 5e6d45a commit d0e0cca

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

install-dependencies.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,23 @@ popd
1313
echo "Installing GUI extension dependencies..."
1414
pushd gui
1515
npm install
16+
echo "Linking core"
17+
npm link @continuedev/core
18+
echo "Done linking core"
19+
npm run build
20+
popd
21+
# VSCode Extension (will also package GUI)
22+
echo "Installing VSCode extension dependencies..."
23+
pushd extensions/vscode
24+
25+
# This does way too many things inline but is the common denominator between many of the scripts
26+
npm install
27+
npm link @continuedev/core
28+
npm run package
29+
30+
popd
31+
32+
echo "Installing binary dependencies..."
33+
pushd binary
34+
npm install
35+
npm run build

0 commit comments

Comments
 (0)