From: Jörn Zaefferer Date: Mon, 2 Apr 2012 14:05:59 +0000 (+0200) Subject: Build/grunt: Strip existing (protected) headers from to-be-minified CSS files X-Git-Tag: 1.9.0m8~167 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=83756a1d874823389f6e378ebdce014efe3d9bf7;p=jquery-ui.git Build/grunt: Strip existing (protected) headers from to-be-minified CSS files --- diff --git a/grunt.js b/grunt.js index 0f72e4842..a8ab7c666 100644 --- a/grunt.js +++ b/grunt.js @@ -64,7 +64,7 @@ uiFiles.concat( allI18nFiles ).forEach(function( file ) { }); cssFiles.forEach(function( file ) { - minifyCSS[ "dist/" + file.replace( /\.css$/, ".min.css" ).replace( /themes\/base\//, "themes/base/minified/" ) ] = [ "", file ]; + minifyCSS[ "dist/" + file.replace( /\.css$/, ".min.css" ).replace( /themes\/base\//, "themes/base/minified/" ) ] = [ "", "" ]; });