Skip to content

Commit 0288a32

Browse files
committed
fix double \n in cssmin results
1 parent f66a476 commit 0288a32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = function (grunt) {
1313
' * (C) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>\n' +
1414
' * Licensed under <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
1515
short: '/* <%= pkg.title || pkg.name %> <%= pkg.version %>' +
16-
' | <%= _.pluck(pkg.licenses, "type").join(", ") %> License */\n'
16+
' | <%= _.pluck(pkg.licenses, "type").join(", ") %> License */'
1717
},
1818
// Task configuration.
1919
clean: {
@@ -88,7 +88,7 @@ module.exports = function (grunt) {
8888
},
8989
uglify: {
9090
options: {
91-
banner: '<%= banner.short %>',
91+
banner: '<%= banner.short %>\n',
9292
report: 'gzip'
9393
},
9494
base: {

0 commit comments

Comments
 (0)