Skip to content

Instantly share code, notes, and snippets.

@cbioley
Created February 10, 2016 00:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cbioley/72a0dd92783415102c58 to your computer and use it in GitHub Desktop.
Update in `gulpfile.babel.js`
...
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