ouhouhsami / module-boilerplate

Simple collection of boilerplate and assets for our modules
1 stars 1 forks source link

Default task 2 #9

Open ouhouhsami opened 10 years ago

ouhouhsami commented 10 years ago

The default task should also, I think, lauch the dependencies and lib tasks. As these two need to be synchronised with our other "compiled" javascript not tested

  gulp.task('default', function(callback) {
    //'transpile',
    runSequence('transpile', 'standalone', 'dependencies', 'lib', 'uglify', callback);
  }); 

Also, the 'test' task seems wrong, as 'watch' task dont render all the compile process. (Should may be add 'dependencies', 'lib' tasks.)