14 lines
212 B
Bash
Executable File
14 lines
212 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$1" = "fast" ]; then
|
|
./scripts/build-for-test.sh
|
|
fi
|
|
|
|
if [ "$1" != "fast" ]; then
|
|
./scripts/package.sh --local
|
|
fi
|
|
|
|
rm -rf node_modules/@nrwl
|
|
|
|
cp -r build/packages node_modules/@nrwl
|