cbf
Version:
A package for creating scripts to store and run your most commonly used CLI commands for a repo or just in general
22 lines (19 loc) • 487 B
JavaScript
const messages = {
scriptsNotDeleted: {
message: '\nScripts not deleted',
},
deletedAllScripts: {
message: '\nDeleted all scripts!',
},
shouldDeleteAllScripts: {
message: 'Delete all scripts (this action cannot be undone)?',
},
noScriptsToDelete: {
message: 'There are currently no scripts to delete',
},
dryRun: {
message: '\nRunning in <primary>dry-run<primary> mode. Scripts not deleted',
},
};
module.exports = messages;