diff options
author | wout <wout@impinc.co.uk> | 2014-08-19 18:16:21 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-08-19 18:16:21 +0200 |
commit | 35c46452577fc550793d13075c3010619ac1c96d (patch) | |
tree | d048ef6039d062bea2fe17e394c02b20b72572a8 /gulpfile.js | |
parent | 4466328be6a0c1cd5f3a14abab508b7f3c692061 (diff) | |
download | svg.js-35c46452577fc550793d13075c3010619ac1c96d.tar.gz svg.js-35c46452577fc550793d13075c3010619ac1c96d.zip |
Secure wrapper
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index a62d99c..0337e7b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -21,10 +21,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 = [
|