mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
17 lines
223 B
Bash
Executable File
17 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
rm -rf \
|
|
node_modules \
|
|
web/node_modules \
|
|
backend/api/node_modules \
|
|
backend/email/node_modules \
|
|
command/node_modules \
|
|
backend/shared/node_modules
|
|
|
|
yarn install
|
|
|