Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Rollup@1.0 support #532

Merged
merged 6 commits into from Jan 1, 2019
Merged

feat: Rollup@1.0 support #532

merged 6 commits into from Jan 1, 2019

Conversation

tivac
Copy link
Owner

@tivac tivac commented Jan 1, 2019

Had to change how the plugin reported dependencies, as well as invent a new way of marking files as being replaceable in processor.invalidate(). Used to just .remove() them but the transform hook isn't getting called for unchanged files again, presumably due to the caching layer.

This has the downside of never removing files when they've been deleted/renamed, but I think that's probably ok? We'll see! At the very least it won't be a breaking change to add functionality to check for the file on disk when the watchChange event fires and then removing files that are gone after we've invalidated them.

@codecov
Copy link

codecov bot commented Jan 1, 2019

Codecov Report

Merging #532 into master will increase coverage by 0.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #532      +/-   ##
==========================================
+ Coverage   99.11%   99.13%   +0.01%     
==========================================
  Files          39       40       +1     
  Lines         907      922      +15     
  Branches      135      138       +3     
==========================================
+ Hits          899      914      +15     
  Misses          8        8
Impacted Files Coverage Δ
packages/processor/processor.js 100% <100%> (ø) ⬆️
packages/rollup/rollup.js 100% <100%> (ø) ⬆️
packages/test-utils/rollup-code-snapshot.js 100% <100%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ee1da9a...e78d1df. Read the comment docs.

@tivac tivac merged commit 1fab777 into master Jan 1, 2019
@tivac tivac deleted the rollup-1 branch January 1, 2019 22:33
Repository owner deleted a comment from TravisBuddy Jan 1, 2019
@lukastaegert
Copy link

BTW not deleting files is quite in line with what rollup does i.e. just use hashes in watch mode, make some changes and watch your target directory fill up...

I guess we need a dedicated cleanup plugin that uses the "manifest" you get in the generateBundle hook to clean up the diffing files. That is if you use the asset emission API.

tivac added a commit that referenced this pull request Mar 28, 2019
When invalidation was added in #532 I apparently forgot to account for it withiin the dependency walking code, so invalidated files wouldn't ever be rewalked. This has likely been causing a variety of nasty-to-debug errors in the wild 😞
tivac added a commit that referenced this pull request Mar 28, 2019
When invalidation was added in #532 I apparently forgot to account for it withiin the dependency walking code, so invalidated files wouldn't ever be rewalked. This has likely been causing a variety of nasty-to-debug errors in the wild 😞
tivac added a commit that referenced this pull request Mar 28, 2019
When invalidation was added in #532 I apparently forgot to account for it withiin the dependency walking code, so invalidated files wouldn't ever be rewalked. This has likely been causing a variety of nasty-to-debug errors in the wild 😞
@tivac tivac mentioned this pull request Mar 28, 2019
9 tasks
tivac added a commit that referenced this pull request Mar 28, 2019
When invalidation was added in #532 I apparently forgot to account for it withiin the dependency walking code, so invalidated files wouldn't ever be rewalked. This has likely been causing a variety of nasty-to-debug errors in the wild 😞
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants