We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f313e04 commit f259e50Copy full SHA for f259e50
src/main.js
@@ -67,7 +67,8 @@ async function findChangedBundles (bundles) {
67
for (let filename of cached.includedFiles) {
68
// Don't exit early if a file has changed to ensure
69
// we refresh the cached hash for *all* changed files
70
- thisVariantHasChanged = thisVariantHasChanged || fasterRefreshHashIfFileChanged(filename)
+ const hasFileChanged = fasterRefreshHashIfFileChanged(filename)
71
+ thisVariantHasChanged = thisVariantHasChanged || hasFileChanged
72
}
73
74
// check to actually make sure the css file exists
0 commit comments