mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
## [0.18.0] - 2024-07-09 -d347aedast: [**BREAKING**] Generate `ast_builder.rs`. (#3890) (rzvxa) ### Features -c6c16a5minifier: Dce all conditional expressions (#4135) (Boshen) -365d9baoxc_codegen: Generate annotation comments before `CallExpression` and `NewExpression` (#4119) (IWANABETHATGUY) -3a0f2aaparser: Check for illegal modifiers in modules and namespaces (#4126) (DonIsaac) -2f53bdfsemantic: Check for abstract ClassElements in non-abstract classes (#4127) (DonIsaac) -c4ee9f8semantic: Check for abstract initializations and implementations (#4125) (Don Isaac) -44c7fe3span: Add various implementations of `FromIn` for `Atom`. (#4090) (rzvxa) ### Bug Fixes -cb1af04isolated-declarations: Remove the `async` and `generator` keywords from `MethodDefinition` (#4130) (Dunqing) 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.18.0"
|
|
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 }
|