0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.scripts/package.sh
2022-12-15 01:24:32 +08:00

23 lines
584 B
Bash
Executable file

set -eo pipefail
# Enable globstar (**) feature
shopt -s globstar
echo Prune dependencies
rm -rf node_modules packages/**/node_modules
echo Install production dependencies
NODE_ENV=production pnpm i
echo Prune files
# Some node packages use `src` as their dist folder, so ignore them from the rm list in the end
find \
.git .github .husky .vscode .parcel-cache pnpm-*.yaml *.js \
packages/**/src \
packages/**/*.config.js packages/**/*.config.ts packages/**/tsconfig*.json \
! -path '**/node_modules/**' \
-prune -exec rm -rf {} +
echo Tar
cd ..
tar -czf /tmp/logto.tar.gz logto