diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gulpfile.js b/gulpfile.js index 53015ba..7203ccf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,10 +22,10 @@ var headerLong = ['/*!' , '* @license <%= pkg.license %>'
, '*'
, '* BUILT: <%= pkg.buildDate %>'
- , '*/;'
+ , '*/'
, ''].join('\n')
-var headerShort = '/*! <%= pkg.name %> v<%= pkg.version %> <%= pkg.license %>*/;'
+var headerShort = '/*! <%= pkg.name %> v<%= pkg.version %> <%= pkg.license %>*/'
// all files in the right order (currently we don't use any dependency management system)
var parts = [
@@ -83,8 +83,8 @@ var parts = [ , 'src/polyfill.js'
]
-gulp.task('clean', function(cb) {
- del([ 'dist/*' ], cb);
+gulp.task('clean', function() {
+ return del([ 'dist/*' ])
})
/**
@@ -141,9 +141,4 @@ gulp.task('docs', function() { })
})
-gulp.task('default', ['clean', 'unify', 'minify'], function() {})
-
-
-
-
-
+gulp.task('default', ['clean', 'unify', 'minify'])
\ No newline at end of file |