Skip to main content
Module

x/openpgp/update_deps.sh

OpenPGP implementation for JavaScript
Latest
File
#!/bin/sh
# go to rootcd `dirname $0`
# clear shrinkwrapped node_modulesrm package-lock.jsonrm -rf node_modules/
# abort if tests failset -e
# install dependenciesnpm install
# build and testnpm test
# Add build files to gitgit add package-lock.jsongit commit -m "Update npm dependencies and package lock"