Created
February 10, 2016 00:04
-
-
Save cyr-l/72a0dd92783415102c58 to your computer and use it in GitHub Desktop.
Update in `gulpfile.babel.js`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
gulp.task('bare', () => { | |
// By default, this task is a no-op. | |
// | |
// If you want to activate it in order to remove the demo files from | |
// your Este.js project, please do the following: | |
// | |
// 1. run `npm install gulp-este-bare` | |
// 2. add "import blank from 'gulp-este-bare'" at the top of this file | |
// | |
(typeof bare === 'function') ? bare() : // eslint-disable-line no-unused-expressions | |
console.log(` | |
This task does nothing for the time being. | |
Please read the comments in the task (bottom of \`gulpfile.babel.js\`) if you want to activate it. | |
`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment