Commit 43c25465 authored by Jeremy Morrell's avatar Jeremy Morrell Committed by Jeremy Morrell

Add metrics around installing devDependencies

parent 57276751
......@@ -34,6 +34,12 @@ list_node_config() {
echo "npm scripts will see NODE_ENV=production (not '${NODE_ENV}')"
echo "https://docs.npmjs.com/misc/config#production"
fi
if [ "$NPM_CONFIG_PRODUCTION" == "true" ]; then
mcount "npm-config-production-true"
elif [ "$NPM_CONFIG_PRODUCTION" == "false" ]; then
mcount "npm-config-production-false"
fi
}
export_env_dir() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment