mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
12 lines
633 B
Makefile
12 lines
633 B
Makefile
|
|
gen_deb:
|
|
./packager/build-dist.sh
|
|
./packager/build-deb.sh
|
|
|
|
publish:
|
|
./packager/deploy.sh
|
|
|
|
clean:
|
|
find node_modules \( -name "example" -o -name "examples" -o -name "docs" -o -name "jsdoc" -o -name "jsdocs" -o -name "test" -o -name "tests" -o -name "*\.md" -o -name "*\.html" -o -name "*\.eot" -o -name "*\.svg" -o -name "*\.woff" \) -print -exec rm -rf {} \;
|
|
find node_modules -type d \( -name "example" -o -name "examples" -o -name "docs" -o -name "jsdoc" -o -name "jsdocs" -o -name "test" -o -name "tests" -o -name "*\.md" -o -name "*\.html" -o -name "*\.eot" -o -name "*\.svg" -o -name "*\.woff" \) -print -exec rm -rf {} \;
|