mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
19 lines
275 B
Bash
Executable File
19 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
#npm run build
|
|
npm pack
|
|
rm -rf dist
|
|
mkdir dist
|
|
mv pm2-*.tgz dist/pack.tgz
|
|
|
|
cd dist
|
|
tar -xzf pack.tgz --strip 1
|
|
rm -rf pack.tgz
|
|
npm install --production
|
|
cd ..
|
|
|
|
tar -cvzf dist/pm2-v`node dist/bin/pm2 --version`.tar.gz dist/*
|
|
shasum -a 256 dist/pm2-*.tar.gz
|