mercenary
Version:
The force multiplier web application stack
15 lines (9 loc) • 308 B
JavaScript
const chalk = require('chalk');
const updateNotifier = require('update-notifier');
const pkg = require('./package.json');
updateNotifier({ pkg }).notify();
console.log(`
Success! Mercenary is now installed.
To create a new mercenary application, run the command:
${chalk.cyan('mercenary my-app')}
`);