mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
## [0.24.1] - 2024-08-10 ### Features -b3c3125linter: Overhaul unicorn/no-useless-spread (#4791) (DonIsaac) -c519295minifier: Add `InjectGlobalVariables` plugin (`@rollup/plugin-inject`) (#4759) (Boshen) ### Bug Fixes -fff9da3ast, ast_codegen: Use `generate_derive` instead of visitable for generating span derives. (#4747) (rzvxa) -f5eeebdast_macros: Raise compile error on invalid `generate_derive` input. (#4766) (rzvxa) -4d0b40anapi/transform: Fix wrong isolated declarations emit (Boshen) ### Refactor -daa0b2east: `oxc_ast` crate re-export AST types from other crates (#4773) (overlookmotel) -d4a3be8ast_codegen: Line breaks between types in layout assertions (#4781) (overlookmotel) -dbb5f4cast_codegen: Remove unnecessary imports from generated files (#4774) (overlookmotel) -7ea058dast_codegen: Replace Windows-style line breaks with Unix-style (#4769) (overlookmotel) -2dea0caast_codegen: Consistent import order (#4761) (overlookmotel) 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.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_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 }
|