trailsjs/generator-trailpack

View on GitHub
src/app/steps/end.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Step 8
 * Called last, cleanup, say good bye, etc
 */

import chalk from 'chalk';
import printMessage from 'print-message';

export default function () {
  printMessage([
    `Your ${chalk.green('Trailpack')} module has been created!`,
    `---`
  ], {
    printFn: this.log
  });
};