You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #489 I spent a lot of time debugging why babel wouldn't work only to find out that the first run didn't have the presets option, but after it was added the original output remained in the cache.
Step to reproduce:
Add a filter to a bundle
Build the bundled asset
Change an option for the filter
Build the bundled asset
What happened:
The build after the option was changed still fetched the asset from the cache even though the filter might output different content.
What should have happened:
Modifying the filter option should have invalidated the cache on the next build.
Suggested fixes:
Incorporate the filter options into the cache's hash.
The text was updated successfully, but these errors were encountered:
In #489 I spent a lot of time debugging why babel wouldn't work only to find out that the first run didn't have the
presets
option, but after it was added the original output remained in the cache.Step to reproduce:
What happened:
The build after the option was changed still fetched the asset from the cache even though the filter might output different content.
What should have happened:
Modifying the filter option should have invalidated the cache on the next build.
Suggested fixes:
Incorporate the filter options into the cache's hash.
The text was updated successfully, but these errors were encountered: