mirror of
https://github.com/mapbox/node-fontnik.git
synced 2026-01-18 15:54:55 +00:00
* update build-glyphs help and building from source instructions * test and build binaries for Node.js v6.x LTS instead of v5.x * make sure we're using correct NODE_VERSION in install.md
17 lines
259 B
Bash
Executable File
17 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
source ./scripts/install_mason.sh
|
|
|
|
node --version
|
|
npm --version
|
|
which node
|
|
|
|
if [[ ${COVERAGE} == true ]]; then
|
|
npm install --build-from-source --debug --clang;
|
|
else
|
|
npm install --build-from-source --clang;
|
|
fi;
|