-
Notifications
You must be signed in to change notification settings - Fork 4.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
[WIP] Unify JIT and AOT code paths #4188
Conversation
dd88b1c
to
581e0a0
Compare
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #4188 +/- ##
===========================================
- Coverage 86.84% 70.08% -16.77%
===========================================
Files 341 219 -122
Lines 4836 5456 +620
Branches 919 1032 +113
===========================================
- Hits 4200 3824 -376
- Misses 561 1469 +908
- Partials 75 163 +88 ☔ View full report in Codecov by Sentry. |
Still lots of clean up that can be done in some of the more complex ones, but at least it's one file per plugin now.
63522aa
to
33df925
Compare
* WIP * WIP * Finish combining JIT and AOT plugins Still lots of clean up that can be done in some of the more complex ones, but at least it's one file per plugin now. * Remove unused import * Fix AOT generation bugs * Move corePlugins/index.js to corePlugins.js * Convert JIT files to ESM * Move tests * Reorder core plugins to match JIT order * Update AOT apply tests * Unify utils * Combine plugin lists to one single source of truth * Finish resolving merge conflicts, fix tests Co-authored-by: Adam Wathan <[email protected]>
WIP start by unifying JIT and AOT codepaths.