fork-openpgpjs/update_deps.sh
Tankred Hase 3730289b55 Fix shrinkwrap for use on node v4.2 LTS
* Remove fsevents as optional dependency in package.json
* Update npm dependencies and shrinkwrap
2016-01-31 07:17:08 +07:00

25 lines
389 B
Bash
Executable File

#!/bin/sh
# go to root
cd `dirname $0`
# clear shrinkwrapped node_modules
rm npm-shrinkwrap.json
rm -rf node_modules/
# abort if tests fail
set -e
# install dependencies
npm install
# build and test
npm test
# shrinkwrap production and dev dependencies
npm shrinkwrap --dev
# Add build files to git
git add npm-shrinkwrap.json
git commit -m "Update npm dependencies and shrinkwrap"