UNPKG

npm-consider-tester

Version:

Check npm package dependencies, stats and impact on your package before installing it

13 lines (10 loc) 294 B
/** * @file checks if need to run in prod mode */ const program = require('commander'); module.exports = function isProduction() { const [, options] = program.args; const { production } = options; const { NODE_ENV } = process.env; return production || NODE_ENV === 'production'; };