grunt-ver
grunt-ver copied to clipboard
If you hash two files on different paths that have the same filename all references that get replaced will only use the same hash. For instance if you have MathJax...
In npm-0.11+ the `hash.update(...)` function must receive a buffer to create consistent and reliable hashes. Instead the current codebase is processing a String value instead of the Buffer. I've made...
The `versionFile` parameter is marked as optional, but when I leave it out (or set its value to ''), it generates a warning and does not complete the versioning process...
When doing the substitutions in references the regex looks like: ``` regex = new RegExp('\\b' + to.basename + '\\b', 'g'); ``` So if you have a basename like `foo.js` and...
In `README.md` the examples all suggest making a task called `version` which Grunt will never find. Turns out the actual task is called `ver`. Can you update the docs to...
The [documentation for hash.update()](http://nodejs.org/api/crypto.html#crypto_hash_update_data_input_encoding) states that if no encoding is given, the argument is expected to be a Buffer. Like many other "hash tasks" for Grunt, grunt-ver [provides the contents...
versionFile is no longer mandatory. If the option hasn't been defined it won't create the version file. If version is present, it will return after logging the warning
I'm posting this issue to let you know that we will be publishing Grunt 0.4 on Monday, February 18th. If your plugin is not already Grunt 0.4 compatible, would you...
More a question than an issue, just curious if there was intent on making this support Grunt .4?