mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
9e215769cc
swc_ecma_codegen: - Emit `;` after private class properties. swc_ecma_minifier: - `pure`: Drop more invalid expressions. - `sequences`: Drop more invalid expressions. - `strings`: Fix concat. - `inline`: Inline into `b` in `a[b] = foo`.
28 lines
739 B
TOML
28 lines
739 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "wasm module for swc"
|
|
edition = "2018"
|
|
license = "Apache-2.0 AND MIT"
|
|
name = "wasm"
|
|
publish = false
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "1.2.103"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.42"
|
|
console_error_panic_hook = "0.1.6"
|
|
once_cell = "1.3.1"
|
|
parking_lot_core = "=0.8.0"
|
|
path-clean = "0.1"
|
|
serde = {version = "1", features = ["derive"]}
|
|
serde_json = "1"
|
|
swc = {path = "../"}
|
|
swc_common = {path = "../common"}
|
|
swc_ecmascript = {path = "../ecmascript"}
|
|
tracing = {version = "0.1.28", features = ["release_max_level_off"]}
|
|
wasm-bindgen = {version = "0.2", features = ["serde-serialize"]}
|
|
wasm-bindgen-futures = "0.4.8"
|