-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bundler): Fix statement ordering issue (#1264)
swc_bundler: - Reduce binary size by reducing usage of visitor / folders. - Handle `export *` and `export { default }` from same source. (denoland/deno#8530, denoland/deno#8679) - Fix ordering of statements. (denoland/deno#8545) - Sort statements in wrapped modules. (denoland/deno#8211 (comment)) - Exclude default export while handling `export *`. - Exclude `export { default }` and `export { foo as default }` while handling `export *`. - Make statements from same module to be injected together. (denoland/deno#8620) swc_ecma_transforms: - fixer: Handle assignments in the callee of `new` correctly. - fixer: Handle seqence expression in the callee of `new` correctly.
- Loading branch information
Showing
105 changed files
with
3,078 additions
and
2,135 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
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#!/usr/bin/env bash | ||
set -eux | ||
|
||
cargo test --no-run | ||
|
||
cargo test --lib | ||
cargo test --test fixture | ||
(cd ../spack && cargo test --test fixture) | ||
cargo test --test deno $@ -- --nocapture |
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 was deleted.
Oops, something went wrong.
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.