mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
c648232864
Now swc passes all tests from `@babel/plugin-transform-classes`
19 lines
546 B
TOML
19 lines
546 B
TOML
[package]
|
|
name = "swc_ecmascript"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/swc_ecmascript/"
|
|
description = "Ecmascript"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
swc_ecma_ast = { path ="./ast" }
|
|
swc_ecma_codegen = { path ="./codegen" }
|
|
swc_ecma_parser = { path ="./parser", features = ["verify"] }
|
|
swc_ecma_transforms = { path ="./transforms" }
|
|
swc_ecma_lints = { path ="./lints" }
|
|
|
|
[dev-dependencies]
|