Skip to content

Commit 8d4fc97

Browse files
committed
init
1 parent f150275 commit 8d4fc97

File tree

97 files changed

+29331
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+29331
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
authors = ["강동윤 <[email protected]>"]
3+
description = "Compatibility layer for the ECMAScript standard"
4+
documentation = "https://rustdoc.swc.rs/swc_ecma_transformer/"
5+
edition = { workspace = true }
6+
include = ["Cargo.toml", "src/**/*.rs"]
7+
license = { workspace = true }
8+
name = "swc_ecma_transformer"
9+
repository = { workspace = true }
10+
version = "0.1.0"
11+
12+
[lints.rust]
13+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(swc_ast_unknown)'] }
14+
15+
[dependencies]
16+
bitflags = { workspace = true }
17+
rustc-hash = { workspace = true }
18+
tracing = { workspace = true }
19+
20+
swc_atoms = { version = "9.0.0", path = "../swc_atoms" }
21+
swc_common = { version = "17.0.1", path = "../swc_common" }
22+
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
23+
swc_ecma_transforms_base = { version = "30.0.0", path = "../swc_ecma_transforms_base" }
24+
swc_ecma_utils = { version = "24.0.0", path = "../swc_ecma_utils" }
25+
swc_ecma_visit = { version = "18.0.1", path = "../swc_ecma_visit" }
26+
swc_trace_macro = { version = "2.0.2", path = "../swc_trace_macro" }

0 commit comments

Comments
 (0)