mirror of
https://github.com/danbulant/oxc
synced 2026-05-23 06:08:47 +00:00
## [0.47.1] - 2025-01-19 ### Features -ee8ee55napi/parser: Add `.hasChanged()` to `MagicString` (#8586) (Boshen) -1bef911napi/parser: Add source map API (#8584) (Boshen) ### Bug Fixes -7b219a9minifier: Fix dce shadowed undefined (#8582) (Boshen) -7421a52transformer/typescript: Correctly resolve references to non-constant enum members (#8543) (branchseer) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
42 lines
1 KiB
TOML
42 lines
1 KiB
TOML
[package]
|
|
name = "oxc_parser_napi"
|
|
version = "0.47.1"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc = { workspace = true }
|
|
oxc_ast = { workspace = true, features = ["serialize"] } # enable feature only
|
|
oxc_data_structures = { workspace = true }
|
|
oxc_napi = { workspace = true }
|
|
oxc_sourcemap = { workspace = true, features = ["napi"] }
|
|
|
|
rustc-hash = { workspace = true }
|
|
self_cell = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
string_wizard = { workspace = true, features = ["sourcemap", "serde"] }
|
|
|
|
napi = { workspace = true, features = ["async"] }
|
|
napi-derive = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["napi", "oxc_ast"]
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|