From cd066e79382aaf62489b5aa360fcc00d38776e24 Mon Sep 17 00:00:00 2001 From: Sondre Nilsen Date: Tue, 2 May 2017 22:44:59 +0200 Subject: [PATCH] Forgot to uncomment the gulp subgenerator, whoops --- generators/app/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/generators/app/index.js b/generators/app/index.js index 4b2b166..c0b1863 100644 --- a/generators/app/index.js +++ b/generators/app/index.js @@ -67,7 +67,7 @@ module.exports = class extends Generator { { name: 'babel', type: 'confirm', - message: 'Compile your JS with Babel', + message: 'Compile your JS with Babel?', when: this.options.babel === undefined } ]; @@ -99,10 +99,10 @@ module.exports = class extends Generator { this.composeWith(require.resolve('../git')); - // this.composeWith(require.resolve('../gulp'), { - // uploading: this.props.uploading, - // babel: this.props.babel - // }); + this.composeWith(require.resolve('../gulp'), { + uploading: this.props.uploading, + babel: this.props.babel + }); this.composeWith(require.resolve('../readme'), { projectName: this.props.projectName,