gunta / grunt-manifest

Generates HTML5 Cache Manifest files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Exclude files based on pattern

torvalde opened this issue · comments

I have a local copy of jquery as a fallback, for the one on cdn, I also add a checksum to each file based on its contents, so it end up like this:

jquery.min.d4a20d75.js

I would like to eclude it like this:

jquery.min.*.js

So I do not have to hard code in a value that can change

as a workaround, you can put exclusions in src, e.g.:

            src: ['**', '!**/*~'],