diff options
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 7203ccf..d02081f 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 = [
|