mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.16.3] - 2024-07-02 ### Features -b257d53linter: Support report `@typescript-eslint/consistent-type-imports` (#3895) (mysteryven) ### Bug Fixes -23038adcodegen: Print `TSFunctionType` inside `TSTypeAssertion` (#3999) (Boshen) -d995f94semantic: Resolve reference incorrectly when a parameter references a parameter that hasn't been defined yet (#4004) (Dunqing) -bdee156transformer/typescript: `declare class` incorrectly preserved as runtime class (#3997) (Dunqing) -a50ce3dtransformer/typescript: Missing initializer for class constructor arguments with `private` and `protected` modifier (#3996) (Dunqing) ### Refactor -0fe22a8ast: Reorder fields to reflect their visit order. (#3994) (rzvxa) -d0eac46parser: Use function instead of trait to parse normal lists (#4003) (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.3"
|
|
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 }
|