-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Only handle a create of the project root on Parcel startup #6644
base: v2
Are you sure you want to change the base?
Conversation
|
Benchmark ResultsKitchen Sink ✅
Timings
Cold Bundles
Cached Bundles
React HackerNews ✅
Timings
Cold BundlesNo bundle changes detected. Cached BundlesNo bundle changes detected. AtlasKit Editor ✅
Timings
Cold BundlesNo bundle changes detected. Cached BundlesNo bundle changes detected. Three.js ✅
Timings
Cold BundlesNo bundle changes detected. Cached BundlesNo bundle changes detected. |
66aeac1
to
908337f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should occur for one-off builds (i.e. not watch mode) as well. And it should occur in watch mode on the inital build only, not on the first set of fs changes (where it shouldn't happen at all). Probably should be around where we call getEventsSince
?
cc @devongovett
3aa5391
to
07a3f8a
Compare
07a3f8a
to
c708a55
Compare
c708a55
to
adc752b
Compare
e8fb742
to
0f0151c
Compare
0f0151c
to
898f9c0
Compare
lgtm. cc @devongovett |
This constrains re-running of all requests in the RequestTracker to the initial build. Will be landed alongside parcel-bundler/watcher#57 to fix infinite build looping on the dev server caused by unknown flags triggering create events.
Test Plan