blob: b6060a989356991a3153a8ce4c3f5d0c2ceb90ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
# This is used in a task in .vscode/tasks.json
# Start developing with:
# - Run Task -> Install Dependencies
# - Debug -> Server + Extension
# Server
echo "Installing server dependencies..."
pushd continuedev || exit
./install-dependencies.sh
popd || exit
# VSCode Extension (will also package GUI)
echo "Installing VSCode extension dependencies..."
pushd extension || exit
# This does way too many things inline but is the common denominator between many of the scripts
npm run package
|