Skip to content

Commit

Permalink
Removed the welcome message, updated gulp-istanbul
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Feb 10, 2015
1 parent f69533d commit 953a8be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
22 changes: 3 additions & 19 deletions app/index.js
Expand Up @@ -2,6 +2,7 @@
var path = require("path");
var chalk = require("chalk");
var yeoman = require("yeoman-generator");
var yosay = require("yosay");
var shelljs = require("shelljs");

module.exports = yeoman.generators.Base.extend({
Expand Down Expand Up @@ -35,25 +36,8 @@ module.exports = yeoman.generators.Base.extend({
projectPrompting: function () {
var cb = this.async();

this.log(this.yeoman);
this.log("\n" +
chalk.blue(" ____ ___ ___ ___") + chalk.yellow(" ___\n") +
chalk.blue(" `MM `MM `MM `MM") + chalk.yellow(" 68b `MM\n") +
chalk.blue(" MM MM MM MM") + chalk.yellow(" Y89 MM\n") +
chalk.blue(" MM ____ MM __ ____ ___ MM MM") + chalk.yellow(" ___ _________ ____ ____MM\n") +
chalk.blue(" MM 6MMMMb MM d` `MM( )M` MM MM") + chalk.yellow(" `MM MMMMMMMMP 6MMMMb 6MMMMMM\n") +
chalk.blue(" MM 6M` `Mb MM d` `Mb d` MM MM") + chalk.yellow(" MM / dMP 6M` `Mb 6M` `MM\n") +
chalk.blue(" MM MM MM MM d` YM. ,P MM MM") + chalk.yellow(" MM dMP MM MM MM MM\n") +
chalk.blue(" MM MMMMMMMM MMdM. MM M MM MM") + chalk.yellow(" MM dMP MMMMMMMM MM MM\n") +
chalk.blue("(8) MM MM MMPYM. `Mbd` MM MM") + chalk.yellow(" MM dMP MM MM MM\n") +
chalk.blue("(( ,M9 YM d9 MM YM. YMP MM MM") + chalk.yellow(" MM dMP /YM d9 YM. ,MM\n") +
chalk.blue(" YMMMM9 YMMMM9 _MM_ YM._ M _MM__MM") + chalk.yellow("__MM_dMMMMMMMM YMMMM9 YMMMMMM_\n") +
chalk.blue(" d` ") + chalk.yellow("\n") +
chalk.blue(" (8),P ") + chalk.yellow("\n") +
chalk.blue(" YMM ") + chalk.yellow("\n")
);

this.log(chalk.magenta("\nIt\"s time to get Jekyllized!"));
this.log(yosay("Time to supercharge your Jekyll development, time to get Jekyllized!"));

this.log(chalk.yellow("\nTell me a little about your project >>"));

var prompts = [{
Expand Down
5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -33,14 +33,15 @@
"chalk": "^0.5.1",
"globule": "~0.2.0",
"shelljs": "~0.3.0",
"yeoman-generator": "^0.18.6"
"yeoman-generator": "^0.18.6",
"yosay": "^1.0.2"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"coveralls": "^2.11.2",
"gulp": "^3.8.10",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.5.0",
"gulp-istanbul": "^0.6.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-load-plugins": "^0.8.0",
Expand Down

0 comments on commit 953a8be

Please sign in to comment.