mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
## [0.16.2] - 2024-06-30 ### Features -dc6d45east,codegen: Add `TSParenthesizedType` and print type parentheses correctly (#3979) (Boshen) -63f36daparser: Parse modifiers with `parse_modifiers` (take 2) (#3977) (DonIsaac) ### Bug Fixes -dac617dcodegen: Print some missing typescript attributes (#3980) (Boshen) -bd1141disolated-declarations: If declarations is referenced in `declare global` then keep it (#3982) (Dunqing) ### Performance -b234dddsemantic: Only check for jsdoc if jsdoc building is enabled (Boshen) -1eac3d2semantic: Use `Atom<'a>` for `Reference`s (#3972) (Don Isaac) -0c81fbesyntax: Use `NonZeroU32` for `SymbolId` and `ReferenceId` (#3970) (Boshen) ### Refactor -5845057transformer: Pass in symbols and scopes (#3978) (Boshen) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
38 lines
980 B
TOML
38 lines
980 B
TOML
[package]
|
|
name = "oxc_transform_napi"
|
|
version = "0.16.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_parser = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_isolated_declarations = { 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 }
|