mirror of
https://github.com/mapbox/node-fontnik.git
synced 2026-01-18 15:54:55 +00:00
NODE_VERSION as string, not number source nvm, nvm use NODE_VERSION in all scripts bump deps in package.json, drop faucet, add mkdirp
16 lines
264 B
Bash
Executable File
16 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
source ./scripts/install_mason.sh
|
|
|
|
source ~/.nvm/nvm.sh
|
|
nvm use ${NODE_VERSION}
|
|
|
|
if [[ ${COVERAGE} == true ]]; then
|
|
npm install --build-from-source --debug --clang;
|
|
else
|
|
npm install --build-from-source --clang;
|
|
fi;
|