mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 13:00:36 -05:00
57dd66ec3d
This slightly degrades the performance of CJS export analysis on subsequent runs because I changed it to no longer cache in the DENO_DIR with this PR (denort now properly has no idea about the DENO_DIR). We'll have to change it to embed this data in the binary and that will also allow us to get rid of swc in denort (will do that in a follow-up PR).
64 lines
2 KiB
TOML
64 lines
2 KiB
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "denort"
|
|
version = "2.1.5"
|
|
authors.workspace = true
|
|
default-run = "denort"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
description = "Provides the denort executable"
|
|
|
|
[[bin]]
|
|
name = "denort"
|
|
path = "main.rs"
|
|
doc = false
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "integration_tests_runner.rs"
|
|
harness = false
|
|
|
|
[build-dependencies]
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting", "only_snapshotted_js_sources"] }
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
|
|
[dependencies]
|
|
deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
|
|
# todo(dsherret): remove deno_cache_dir
|
|
deno_cache_dir.workspace = true
|
|
deno_config.workspace = true
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_error.workspace = true
|
|
# todo(dsherret): remove deno_graph
|
|
deno_graph = { version = "=0.87.0" }
|
|
deno_lib.workspace = true
|
|
deno_media_type.workspace = true
|
|
deno_npm.workspace = true
|
|
deno_package_json.workspace = true
|
|
deno_path_util.workspace = true
|
|
deno_resolver = { workspace = true, features = ["sync"] }
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_semver.workspace = true
|
|
deno_snapshots.workspace = true
|
|
deno_terminal.workspace = true
|
|
libsui = "0.5.0"
|
|
node_resolver.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
import_map = { version = "=0.21.0", features = ["ext"] }
|
|
indexmap.workspace = true
|
|
log = { workspace = true, features = ["serde"] }
|
|
serde.workspace = true
|
|
sys_traits = { workspace = true, features = ["getrandom", "filetime", "libc", "real", "strip_unc", "winapi"] }
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
twox-hash.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions.workspace = true
|
|
sys_traits = { workspace = true, features = ["memory"] }
|
|
test_util.workspace = true
|