grunt-filerev icon indicating copy to clipboard operation
grunt-filerev copied to clipboard

[DEPRECATED] File revving

Results 21 grunt-filerev issues
Sort by recently updated
recently updated
newest added

Lets say I have 2 html files: a.html b.html a.html is pointing to b.html in his markup (ng-inlcude for example). Now, i have made changes in file b.html but not...

Should fix #15 with a different approach from PR #44 Should also help #53 as it will easier to handle by other grunt tasks, as no path will be added....

I wonder if it would be possible to extend filerev to allow for incremental changes - that is, if a single file has changed update the revving for that file...

Updates pull-request #68, (fixes #62) I thought the file reference in the source map file should point back to the file it's mapping. Doing so, my code triggered the test...

Since this plugin already has the behavior of automatically revving a sourcemap file to match the compiled file, processing the original sourcemap as well causes odd behavior. One example of...

``` javascript filerev: { options: { dropCwd: true }, css: { expand: true, cwd: 'public', src: ['css/main.css'], dest: 'public' } ``` would result: ``` javascript { '/css/main.css': '/css/main.4458448b.css' } ```...

Okay, next one: When I have this grunt config ``` filerev: { images: { expand: true, cwd: 'client', src: 'images/site/**/*.*', dest: 'server/public } ``` Then we have those entries in...

bug

I had a config that looked like this: ``` js filerev: { options: { encoding: 'utf8', algorithm: 'md5', length: 8 }, files: { src: [ '.tmp/build/images/**/*.*', '.tmp/build/sounds/**/*.*', '.tmp/build/app.css', '.tmp/build/app.js' ]...

bug

The tests should search the filesystem to find the new files (or use the summary) instead of having hard coded paths as those may or may not always be the...

chore

We are looking for the best way to get the name of the actual collection/grunt task in the json output so what we are looking for in the json is...

enhancement