Files
webtorrent-desktop/bin/release-_pre.sh
Feross Aboukhadijeh 511382d384 package: remove unneeded 'npm prune'
prune just removes packages in node_modules that are not in
package.json, which is not necessary since we just removed node_modules
2016-05-17 22:10:43 -07:00

11 lines
124 B
Bash
Executable File

#!/bin/sh
set -e
git pull
npm run update-authors
git diff --exit-code
rm -rf node_modules/
npm install
npm dedupe
npm test