Repository URL to install this package:
Version:
1.2.0-1 ▾
|
vending-mp-tcn-dep
/
usr
/
local
/
lib
/
vending
/
mp
/
tcn
/
node_modules
/
prebuild-install
/
log.js
|
---|
var log = require('npmlog')
var fs = require('fs')
var path = require('path')
module.exports = function (rc, env) {
log.heading = 'prebuild-install'
if (rc.verbose) {
log.level = 'verbose'
} else {
log.level = env.npm_config_loglevel || 'notice'
}
// Temporary workaround for npm 7 which swallows our output
if (process.env.npm_config_prebuild_install_logfile) {
var fp = path.resolve(process.env.npm_config_prebuild_install_logfile)
log.on('log', function (msg) {
// Only for tests, don't care about performance
fs.appendFileSync(fp, [log.heading, msg.level, msg.prefix, msg.message].join(' ') + '\n')
})
}
return log
}