grunt-asset-fingerprint works by appending a hash to all asset files. Find and replace is then used to identify references to these assets in your code so that they point at the new fingerprinted assets. Ideally this task works best at the end of the build process.
assetFingerprint: {
"options": {
"manifestPath": "dist/assets.json",
"findAndReplaceFiles": [
"dist/**/*.{js,css,html,xml}"
],
"keepOriginalFiles": false
},
"dist": {
"files": [
{
"expand": true,
"cwd": "dist",
"src": [
"img/**/*",
"webfonts/**/*",
"js/app.js",
"css/app.css"
],
"dest": "dist"
}
]
}
}
- clone this repo
npm install
grunt spec