"use strict";Object.defineProperty(exports,"__esModule",{value:true});constCommand=require('../ember-cli/lib/models/command');conststringUtils=require('ember-cli-string-utils');constchalk_1=require("chalk");functionpickOne(of){returnof[Math.floor(Math.random()*of.length)];}constMakeThisAwesomeCommand=Command.extend({name:'make-this-awesome',works:'insideProject',hidden:true,run:function(commandOptions,rawArgs){this[stringUtils.camelize(this.name)](commandOptions,rawArgs);returnPromise.resolve();},makeThisAwesome:function(){constphrase=pickOne([`You're on it, there's nothing for me to do!`,`Let's take a look... nope, it's all good!`,`You're doing fine.`,`You're already doing great.`,`Nothing to do; already awesome. Exiting.`,`Error 418: As Awesome As Can Get.`]);console.log(chalk_1.default.green(phrase));}});exports.default=MakeThisAwesomeCommand;//# sourceMappingURL=/users/hansl/sources/hansl/angular-cli/commands/easter-egg.js.map