UNPKG

cbf

Version:

A package for creating scripts to store and run your most commonly used CLI commands for a repo or just in general

20 lines (17 loc) 504 B
#!/usr/bin/env node const messages = { shouldDelete: { message: 'Delete <primary>{scriptName}<primary> script (this action cannot be undone)?', }, scriptNotDeleted: { message: '\n<primary>{scriptName}<primary> script not deleted', }, deletedScript: { message: '\nDeleted <primary>{scriptName}<primary> script', }, dryRun: { message: '\nRunning in <primary>dry-run<primary> mode. <primary>{scriptName}<primary> script not deleted', }, }; module.exports = messages;