grunt-cache-bust icon indicating copy to clipboard operation
grunt-cache-bust copied to clipboard

Cache bust static assets using content hashing

Results 39 grunt-cache-bust issues
Sort by recently updated
recently updated
newest added

I am seeking help to configure properly. This is busting assets just fine, but I can't get it to update the references to the new busted urls. My jekyll static...

First of all I like to thank you for the effort put in this project. I learned a lot poking around here and I value the good job made. ###...

Hi, Sometimes the paths inside the files I've configured are not updating the hash. Here is an example of one line inside an PHP file: `

Since upgrading from 0.4.13 to 1.0.0, I'm finding that that busted files are being busted multiple times, so I end up with lots of the same file: ``` projects.c1979eef7285467a.js projects.c1979eef7285467a.c1979eef7285467a.js...

question

How do I configure cache buster to use an algorithm that returns ONE hash to be used across all files.

My files have SVG references like such: `href='/images/vehicle/ic-fuel-tag.svg#ic-fuel-tag`, but their URLs are not correctly replaced. The hash mark (`#`) should be accepted as an end delimiter in addition to existing...

Hello, There is an error between the package 1.4.1 and 1.5.0 in replaceInFile. ``` var replace = [ // abs path ['/' + original, '/' + hashed], //

Let's say I have two files `child.html` and `parent.html` and the `child.html` file is referenced in the `parent.html` file. Now I run cache bust on those files and they both...

I have a project in which a [PHP file](https://github.com/yellowled/netzgestaltung/blob/master/src/tpl/_main.php) is no longer being rewritten by the [grunt task](https://github.com/yellowled/netzgestaltung/blob/master/grunt/cache-bust.js) since updating from 1.4.1 to 1.5.0. Hashing the (CSS/JS) assets works fine,...

Grunt task ``` grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), cacheBust: { build: { options: { queryString: true, baseDir: './assets/', jsonOutput: true, assets: ['css/**/*.css', 'js/**/*.js'], }, files: [{ expand: true, src: ['./views/**/*.ejs'] }] }...