Releases: ben-rogerson/laravel-mix-make-file-hash
Releases · ben-rogerson/laravel-mix-make-file-hash
2.2.0
Updated API, Blacklist filetypes, Promise based returns
New year, new release! 🥳
- Changed to an object-based config rather than a series of comma args (See readme example for more details).
- Added config to blacklist certain filetypes (and also remove them from the manifest).
{ fileTypesBlacklist: ["html"], keepBlacklistedEntries: true, }
- Rewrote everything to use
async
andawait
. - Return a Promise containing the manifest so you can perform additional steps after the manifest is generated.
New feature: del.sync options
Added the ability to pass through options to del.sync.
laravelMixMakeFileHash(
publicPath,
manifestFilePath,
delSyncOptions = { force: true },
)