npm-license-tracker
Version:
Module to track all npm dependencies and their corrosponding licenses.
16 lines (12 loc) • 327 B
JavaScript
module.exports = {
NoProperArguments:(path) => {
return `module stopped working: ${path}`
},
ErrorInWritingFile:(path) => {
return `not able to write the file: ${path}`
},
ErrorInReadingNpmPackages:(path, err) => {
return `fail to read npm packages at: ${path} and error is: ${err}`
}
}