2021-03-20 09:30:54 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "General ecmascript loader used for transforms"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_loader/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-03-20 09:30:54 +03:00
|
|
|
name = "swc_ecma_loader"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-01-04 13:29:50 +03:00
|
|
|
version = "0.26.0"
|
2021-03-20 09:30:54 +03:00
|
|
|
|
2021-06-24 09:32:09 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2021-11-25 08:16:18 +03:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-06-24 09:32:09 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
# Enable node js resolver
|
2021-11-11 14:00:46 +03:00
|
|
|
node = ["normpath", "serde_json", "dashmap", "once_cell", "path-clean"]
|
2021-06-24 09:32:09 +03:00
|
|
|
# Enable support for `paths` of tsconfig.json
|
|
|
|
tsc = ["dashmap", "once_cell", "regex"]
|
2021-03-20 09:30:54 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-10-09 11:08:13 +03:00
|
|
|
ahash = "0.7.4"
|
2021-06-24 09:32:09 +03:00
|
|
|
anyhow = "1.0.41"
|
|
|
|
dashmap = {version = "4.0.2", optional = true}
|
2021-12-30 12:59:18 +03:00
|
|
|
lru = {version = "0.7.1", optional = true}
|
2021-06-24 09:32:09 +03:00
|
|
|
once_cell = {version = "1.8.0", optional = true}
|
2021-10-08 10:47:01 +03:00
|
|
|
path-clean = {version = "=0.1.0", optional = true}
|
2021-06-24 09:32:09 +03:00
|
|
|
regex = {version = "1", optional = true}
|
2021-11-11 14:00:46 +03:00
|
|
|
serde = {version = "1", features = ["derive"]}
|
2021-06-24 09:32:09 +03:00
|
|
|
serde_json = {version = "1.0.64", optional = true}
|
2022-01-04 13:29:50 +03:00
|
|
|
swc_common = {version = "0.16.0", path = "../swc_common"}
|
2021-09-27 12:19:15 +03:00
|
|
|
tracing = "0.1.28"
|
2021-03-20 09:30:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-06-24 09:32:09 +03:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
normpath = {version = "0.2", optional = true}
|