mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-11 12:07:42 +00:00
first commit
This commit is contained in:
19
webapp/packages/supersonic-fe/coding_build/build_pre.sh
Normal file
19
webapp/packages/supersonic-fe/coding_build/build_pre.sh
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
npm i
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "npm i failed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
npm run build:inner
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "build failed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf dist.zip
|
||||
zip -r dist.zip ./dist/
|
||||
mkdir -p bin
|
||||
mv dist.zip bin/
|
||||
tar czf dist.tar.gz bin/dist.zip
|
||||
Reference in New Issue
Block a user