Drop the default task

This commit is contained in:
Esteban Ordano 2015-01-12 17:57:49 -03:00
parent 8c55df101b
commit 5b193440c8
2 changed files with 1 additions and 7 deletions

View File

@ -173,12 +173,6 @@ function startGulp(name) {
gulp.task('watch:browser', function() {
return gulp.watch(alljs, ['browser']);
});
/* default task */
gulp.task('default', function(callback) {
return runsequence(['lint'], ['browser:uncompressed', 'test'], ['coverage', 'browser:compressed'],
callback);
});
}
module.exports = startGulp;

View File

@ -1,6 +1,6 @@
{
"name": "gulp-bitcore",
"version": "0.1.0",
"version": "0.1.2",
"description": "A helper for common tasks across bitcore modules'",
"main": "index.js",
"scripts": {