Luismahou / grunt-hashres

Hashes your js and css files and rename the <script> and <link> declarations that refer to them in your html/php/etc files.
MIT License
115 stars 41 forks source link

If I specify renameFiles: true, it does not rename files #6

Closed niyazpk closed 10 years ago

niyazpk commented 11 years ago

If I specify renameFiles: true in the gruntfile, it does not rename files.

This is because of this line - hashresHelper.js: LIne 27:

renameFiles = renameFiles === undefined? true : false;

it should be:

renameFiles = renameFiles === undefined? true : renameFiles;

@gissues:{"order":50,"status":"done"}

Luismahou commented 10 years ago

This was fixed long time ago.