mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
5503cde085
swc_ecma_transforms: - extract utils
21 lines
739 B
TOML
21 lines
739 B
TOML
[package]
|
|
name = "swc_ecmascript"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
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
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ast = { package = "swc_ecma_ast", path ="./ast" }
|
|
codegen = { package = "swc_ecma_codegen", path ="./codegen" }
|
|
parser = { package = "swc_ecma_parser", path ="./parser", features = ["verify"] }
|
|
preset_env = { package = "swc_ecma_preset_env", path ="preset_env" }
|
|
utils = { package = "swc_ecma_utils", path ="./utils" }
|
|
transforms = { package = "swc_ecma_transforms", path ="./transforms" }
|
|
|
|
[dev-dependencies]
|