Grunt plugin for assets versioning
I'm looking for a grunt plugin that will automatically change the references to static assets (js/css) inside an html file like this: <link rel="stylesheet" type="text/css" href="style.css?v=12345678" /> <script src="script.js?v=12345678"></script> I searched at the gruntjs.com/plugins -> "version", but it seems that all of them change the actual version of the files instead of references to them. Am I missing it? Is there a plugin that can perform this task? For this I use grunt-filerev for the versionning and grunt-usemin for the automatic update of the references in source files. These two