You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
swc_bundler:
- Ensure that denoland/deno#10141 is fixed.
- Run deno tests on ci.
- Support nested `export *`. (denoland/deno#10153, denoland/deno#10174)
swc_ecma_codegen:
- Remove `,` after rest elements. (#1573, denoland/deno#10167)
swc_ecma_transforms_optimization:
- Don't drop items used by the discriminant of a switch.
swc_ecma_transforms_typescript:
- Remove constructors without a body.
Here's another bizarre
deno bundle
regression since1.8.0
. Givenfirst.ts
second.ts
third.ts
fourth.ts
deno bundle ./fourth.ts
will produce an invalid output of:Note that
foo
is gone and is never declared in the output. However, if there are only 2 levels of export, where:third.ts
Then
deno bundle ./third.ts
will produce the correct output of:I could only re-produce this from
1.8.0
onwards, so it seems to be a fairly new regression inswc
.The text was updated successfully, but these errors were encountered: