cbf
Version:
A package for creating scripts to store and run your most commonly used CLI commands for a repo or just in general
17 lines (13 loc) • 496 B
JavaScript
const { GITHUB_LINK, NPM_LINK } = require('../../constants');
const messages = {
answerNotFoundErrorWhileRunningScript: {
message:
'\nAn error occurred while running <primary>{scriptName}<primary> script. Could not find <secondary>{answer}<secondary>.\n\nPlease report this at <primary>{githubLink}<primary> or <primary>{npmLink}<primary>',
defaultOptions: {
npmLink: NPM_LINK,
githubLink: GITHUB_LINK,
},
},
};
module.exports = messages;