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

18 lines (14 loc) 377 B
#!/usr/bin/env node const { PROGRAM_NAME } = require('../../../constants'); const messages = { shellQuestion: { message: 'Which shell would you like <primary>{programName}<primary> to use?', defaultOptions: { programName: PROGRAM_NAME, }, }, shellSet: { message: '\nShell was set to <primary>{shell}<primary>', }, }; module.exports = messages;