gulp-fingerprint icon indicating copy to clipboard operation
gulp-fingerprint copied to clipboard

A gulp task to update fingerprinted assets from a rev-manifest.json file

Results 10 gulp-fingerprint issues
Sort by recently updated
recently updated
newest added

For example if you got a JavaScript code where something like this is included: var a = "href="+variable+'something'+variable+"/index.html"; It matches to the href, but then the href string does contain...

It now replaces things like `myimage.svg#tag` with `myimage.239jad2j.svg#tag`.

Updates [Chalk](https://www.npmjs.org/package/chalk) to latest version, 1.0.0. See the [releasenotes](https://github.com/sindresorhus/chalk/releases/tag/v1.0.0) for the changes. This is the first major version, and the API can now be considered stable. This commit and PR...

Just going through the doc atm, im getting problem on requiring the rev-manifest.json file. ``` js var manifest = require('../../dist/rev-manifest'); ``` I get this error `Error: Cannot find module './path/to/rev-manifest'`....

Hey -- the standard regex (https://github.com/vincentmac/gulp-fingerprint/blob/master/index.js#L22) uses the star operator to capture urls, which results in, e.g., `url()` being matched, with no capture group. That then causes a failure because...

Currently to use gulp-fingerprint with gulp-rev, you have to have them as two separate, synchronous tasks. The more gulp-y way of making this work would be a syntax like the...

For application-specific reasons I only store the file name and its subfolder in the revision file like this ``` { "logo.png": "logo-afc86ade.png", "wait/wait1.gif": "wait/wait1-e244a2fd-e244a2fd.gif", ... } ``` for them images,...