This website requires JavaScript.
Explore
Help
Sign In
swc-project
/
swc
Watch
1
Star
1
Fork
0
You've already forked swc
mirror of
https://github.com/swc-project/swc.git
synced
2024-12-25 06:36:08 +03:00
Code
Issues
Actions
2
Packages
Projects
Releases
Wiki
Activity
e445502072
swc
/
crates
/
swc_bundler
/
tests
/
fixture
/
deno-8680
/
output
/
entry.ts
6 lines
81 B
TypeScript
Raw
Normal View
History
Unescape
Escape
fix(bundler): Fix bugs (#1382) swc_bundler: - Improve performance - Use `Vec<AHashSet<usize>>` instead of `AHashSet<(usize, usize)>`. - Fix statement orderings. (denoland/deno#9464) - Fix wrapped esm mixed with circular imports. (denoland/deno#8224) - Store content of wrapped esm at top level. (denoland/deno#8224)
2021-02-22 11:27:40 +03:00
const
a
=
"hello world"
;
feat(swcpack): Enable concurrent mode (#2356) swc_common: - Use `Mutex` from `parking_lot` instead of it from std. swc_bundler: - Use `fxhash` if possible. - Don't `clone()` all modules if the entry has only one item. swc_ecma_loader: - `NodeModulesResolver`: Use `path-clean` instead of `canonicalize`. swc_ecma_transforms_optimization: - Reimplement `dce` node_bundler: - Enable `concurrent` of `swc_bundler`.
2021-10-08 10:47:01 +03:00
const
mod
=
{
instanceof
:
a
}
;
fix(bundler): Fix bugs (#1382) swc_bundler: - Improve performance - Use `Vec<AHashSet<usize>>` instead of `AHashSet<(usize, usize)>`. - Fix statement orderings. (denoland/deno#9464) - Fix wrapped esm mixed with circular imports. (denoland/deno#8224) - Store content of wrapped esm at top level. (denoland/deno#8224)
2021-02-22 11:27:40 +03:00
console
.
log
(
a
,
mod
)
;
Reference in New Issue
Copy Permalink