Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ...
  2.  
  3. gulp.task('bare', () => {
  4. // By default, this task is a no-op.
  5. //
  6. // If you want to activate it in order to remove the demo files from
  7. // your Este.js project, please do the following:
  8. //
  9. // 1. run `npm install gulp-este-bare`
  10. // 2. add "import blank from 'gulp-este-bare'" at the top of this file
  11. //
  12. (typeof bare === 'function') ? bare() : // eslint-disable-line no-unused-expressions
  13. console.log(`
  14. This task does nothing for the time being.
  15. Please read the comments in the task (bottom of \`gulpfile.babel.js\`) if you want to activate it.
  16. `);
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement