-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
34 lines (29 loc) · 846 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["magic-akari <[email protected]>"]
description = "[SWC plugin] mutable CJS exports"
edition = "2021"
homepage = "https://github.com/magic-akari/swc_mut_cjs_exports"
keywords = ["swc-plugin", "swc", "jest", "cjs", "commonjs"]
license = "MIT"
name = "swc_mut_cjs_exports"
readme = "README.md"
repository = "https://github.com/magic-akari/swc_mut_cjs_exports"
version = "8.0.1"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
swc_core = { version = "8.0.1", features = [
"ecma_ast",
"ecma_visit",
"swc_plugin",
"ecma_utils",
"swc_atoms",
"ecma_plugin_transform",
] }
[dev-dependencies]
swc_core = { version = "8.0.1", features = ["testing_transform"] }
testing = "4.0.0"
[profile.release]
codegen-units = 1
opt-level = "s"
strip = "debuginfo"