create-instantsearch-app
Version:
⚡️ Build InstantSearch apps at the speed of thought
22 lines (18 loc) • 486 B
JavaScript
const chalk = require('chalk');
module.exports = function teardown(config) {
if (!config.silent) {
console.log();
console.log(
`🎉 Created ${chalk.bold.cyan(config.name)} at ${chalk.green(
config.path
)}.`
);
console.log();
console.log(
`Begin by opening the workspace \`${chalk.green('App.xcworkspace')}\`.`
);
console.log();
console.log('⚡️ Start building something awesome!');
}
return Promise.resolve();
};