-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(babel): memory consumption (#1331)
* chore: changeset * feat(babel): new cache system * fix(babel): invalidate cache whenever it's possible * fix(babel): fix tests for module.ts * chore: apply eslint member-ordering * fix(babel): leaked AbortError * fix(babel): crashes during concurrent runs * feat(babel): softErrors feature flag and docs for globalCache and happyDOM * fix(babel): several massive memory leaks * fix(babel): quick fix for `Unexpected token 'export'` * fix(babel): test for superseded entrypoint in eval * fix(babel): bug with concurrent processing * fix(babel): more logs for uncaught AbortError * fix(babel): Unhandled AbortError * fix(babel): an attempt to break the loop in processing * feat(babel): cache for getExports * fix(babel): endless loop if an error happens in generator
- Loading branch information
Showing
85 changed files
with
2,947 additions
and
2,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@linaria/babel-preset': patch | ||
--- | ||
|
||
Optimized memory consumption. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,3 +73,6 @@ build/ | |
tsconfig.tsbuildinfo | ||
|
||
.linaria-cache | ||
|
||
# debug | ||
*.debug.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.