From ab397f04178c2d081d313a49d9e419f805a4d0f7 Mon Sep 17 00:00:00 2001 From: Sondre Nilsen Date: Fri, 7 Mar 2014 22:55:46 +0100 Subject: [PATCH] feat(deploy): Removed deploy option from jekyllized --- app/index.js | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/app/index.js b/app/index.js index 75dd544..3797cc2 100755 --- a/app/index.js +++ b/app/index.js @@ -285,42 +285,6 @@ JekyllizeGenerator.prototype.askForJekyll = function askForJekyll() { }.bind(this)); } -/*JekyllizeGenerator.prototype.askForDeployment = function askForDeployment() { - var cb = this.async(); - var prompts = [{ - name: 'deploy', - message: 'Use grunt-build-control for deployment?', - type: 'confirm' - }, - { - name: 'deployRemote', - message: 'Remote to deploy to', - default: '../', - when: function (answers) { - return answers.deploy; - } - }, - { - name: 'deployBranch', - message: 'Branch to deploy to', - default: 'gh-pages', - when: function (answers) { - return answers.deploy; - } - }]; - - console.log(chalk.yellow('\nChoose deployment options.') + ' ☛'); - - this.prompt(prompts, function (props) { - - this.deploy = props.deploy; - this.deployRemote = props.deployRemote; - this.deployBranch = props.deployBranch; - - cb(); - }.bind(this)); -};*/ - // Generate and copy over the necessary files to the application JekyllizeGenerator.prototype.scaffold = function scaffold() { this.directory('app', 'src');