Skip to content

Commit

Permalink
Grunt: Whitelist js and css files for @Version replacement instead of…
Browse files Browse the repository at this point in the history
… blacklisting png.
  • Loading branch information
scottgonzalez committed Apr 2, 2012
1 parent 585ef70 commit 3876c87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grunt.js
Expand Up @@ -338,12 +338,12 @@ grunt.registerMultiTask( "copy", "Copy files to destination folder and replace @
}
files.forEach(function( fileName ) {
var targetFile = strip ? fileName.replace( strip, "" ) : fileName;
if ( /png$/.test( fileName ) ) {
grunt.file.copy( fileName, target + targetFile );
} else {
if ( /(js|css)$/.test( fileName ) ) {
grunt.file.copy( fileName, target + targetFile, {
process: replaceVersion
});
} else {
grunt.file.copy( fileName, target + targetFile );
}
});
grunt.log.writeln( "Copied " + files.length + " files." );
Expand Down

0 comments on commit 3876c87

Please sign in to comment.