mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.17.1] - 2024-07-06 ### Bug Fixes -aa585d3ast_codegen, ast: Visit `ExpressionArrayElement` as `Expression`. (#4061) (rzvxa) -564a75acodegen: Missing TypeParameters in TSConstructSignature (#4063) (michaelm) -adee728isolated_declarations: Don't report an error for parameters if they are ObjectPattern or ArrayPattern with an explicit type (#4065) (michaelm) -1b8f208isolated_declarations: Correct emit for private static methods (#4064) (michaelm) -719fb96minifier: Omit dce `undefined` which can be a shadowed variable (#4073) (Boshen) -150f4d9napi/transform: Display error with spanned messages (Boshen) ### Performance -7fe2a2fparser: Do not copy comments (#4067) (overlookmotel) ### Refactor -8fa98e0ast: Inline trivial functions and shorten code (#4066) (overlookmotel) -65aee19isolated-declarations: Reorganize scope tree (#4070) (Luca Bruno) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
39 lines
1 KiB
TOML
39 lines
1 KiB
TOML
[package]
|
|
name = "oxc_transform_napi"
|
|
version = "0.17.1"
|
|
publish = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_isolated_declarations = { workspace = true }
|
|
oxc_transformer = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["napi"]
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|