mirror of
https://github.com/danbulant/oxc
synced 2026-05-22 13:48:55 +00:00
## [0.24.2] - 2024-08-12 ### Features -8e10e25allocator: Introduce `Address` (#4810) (overlookmotel) ### Bug Fixes -62f759ctransformer/typescript: Generated assignment for constructor arguments with access modifiers should be injected to the top of the constructor (#4808) (Dunqing) ### Performance -504ac0bminifier: `InjectGlobalVariables` only add to `replaced_dot_defines` once for each (#4803) (overlookmotel) -35f2742minifier: Avoid repeated `Atom` creation in `InjectGlobalVariables` (#4802) (overlookmotel) ### Documentation -8827659ast: More doc comments for JSX nodes (#4830) (DonIsaac) -559baa5parser: Clean up doc regarding performance; remove conformance (Boshen) ### Refactor -0ea697bast, ast_codegen: `CloneIn` implementations now initialize semantic related cells with `Default` value. (#4819) (rzvxa) -ecfa124ast_codegen: Add line break to generated code (#4829) (overlookmotel) -096ac7blinter: Clean up jsx-a11y/anchor-is-valid (#4831) (DonIsaac) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "oxc_transform_napi"
|
|
version = "0.24.2"
|
|
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_ast = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_isolated_declarations = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_sourcemap = { workspace = true }
|
|
oxc_transformer = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["napi"]
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|