Fabricio Matte
Fabricio Matte
Little late to reply but anyway, after fixing the whitespace issue, you will need to move your built files to inside a `/build` subdirectory. For example, using this setting: ```...
This is expected behavior, it is listed in the Architecture pros vs cons - https://github.com/UltCombo/gulp-buster#architecture Right now, the output filename serves as the "manifest id" for the internal cache to...
Uhm, I see. This is an issue I've been considering for a while, but never gave it much thought as I'd like to avoid complicating the most common use cases....
Can you show the code of your gulp task(s) that cause the issue? As long as you have the same output name (`busters.json`) and run the tasks in the same...
Oh, I see. In fact, I've considered adding this feature in the past, but there were quite a few issues as mentioned in the README: > A feature to allow...
Yep, I've been considering to add an option such as `initialHashes` so that you can do: ``` bust({ initialHashes: require('busters.json') }) ``` This option's documentation should have an warning about...
So far, I've always done the cache-busting at runtime, and that's the only use case which gulp-buster covers at the moment. I believe you can use [gulp-rev](https://github.com/sindresorhus/gulp-rev) + [gulp-rev-replace](https://github.com/jamesknelson/gulp-rev-replace), or...