Skip to content

Tags: brigand/swc

Tags

v1.1.28

Toggle v1.1.28's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix bugs (swc-project#687)

- stript type-only export default
- allow `continue` in a for loop

v1.1.27

Toggle v1.1.27's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix bugs (swc-project#683)

 - Fix block_scoping (Fix swc-project#682)
 - Handle new.target in susbscript position (Fix swc-project#675)

v1.1.26

Toggle v1.1.26's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
resolver: Handle method property correctly (swc-project#679)

v1.1.25

Toggle v1.1.25's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix SourceMap (swc-project#672)

Previously, `SourceMap` (taken from rustc) has a bug which reuses start position when new_source_file is invoked concurrently.

v1.1.24

Toggle v1.1.24's commit message
Add { Load, Resolve }

v1.1.23

Toggle v1.1.23's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix optimizer (swc-project#661)

v1.1.22

Toggle v1.1.22's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve optimizer (swc-project#660)

Although it's quite naive at the moment, I added two optimization passes.

 - dead code elimination (Closes swc-project#607)
 - inlining

v1.1.21

Toggle v1.1.21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Unescape template literals before emitting. (swc-project#652)

Fixes swc-project#637.
Fixes swc-project#639.

v1.1.20

Toggle v1.1.20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Unescape template literals before emitting. (swc-project#652)

Fixes swc-project#637.
Fixes swc-project#639.

v1.1.19

Toggle v1.1.19's commit message
Remove empty expression in expression statement with top level await (s…

…wc-project#630)

Eats the semi-colon.

This doesn't compile (edit: doesn't compile the code in the tests) though because the target of that folder is ES2015. Also, this is kind of strange for me to put the tests in the "typescript" folder. Should we create something more general?

You can take over this PR if you'd like!