Compare commits

...

1 Commits

Author SHA1 Message Date
Esteban Ordano ebf1dfe890 Drop the default task 2015-01-12 17:58:01 -03:00
2 changed files with 1 additions and 7 deletions

View File

@ -173,12 +173,6 @@ function startGulp(name) {
gulp.task('watch:browser', function() { gulp.task('watch:browser', function() {
return gulp.watch(alljs, ['browser']); 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; module.exports = startGulp;

View File

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