@siteone/builder-logger
Advanced tools
Comparing version 0.0.21 to 0.0.22
@@ -11,2 +11,7 @@ const chalk = require('chalk') | ||
module.exports = (msg) => { | ||
module.exports.info(msg.includes('@bldr') ? msg.replace(RGX, chalk.magenta.underline('$1')) : msg) | ||
} | ||
module.exports.log = print.bind(null, 'white') | ||
@@ -17,5 +22,1 @@ module.exports.warn = print.bind(null, 'yellow') | ||
module.exports.error = print.bind(null, 'red') | ||
module.exports = (msg) => { | ||
exports.info(msg.includes('@bldr') ? msg.replace(RGX, chalk.magenta.underline('$1')) : msg) | ||
} |
{ | ||
"name": "@siteone/builder-logger", | ||
"version": "0.0.21", | ||
"version": "0.0.22", | ||
"description": "Logging utility package", | ||
@@ -17,3 +17,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "184ea83ddbb6966eb61c6c9d90a878c6b4e581c3" | ||
"gitHead": "faeb12da4a84aa2bd6de54fecf5b6515458fd0d3" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1105