mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.17.2] - 2024-07-08 ### Features -115ac3ballocator: Introduce `FromIn` and `IntoIn` traits. (#4088) (rzvxa) -720983anapi/transform: Allow setting `sourceType` to `transform` (#4113) (Boshen) -e386b62semantic: Check for invalid type import assignments (#4097) (DonIsaac) ### Bug Fixes -5472b7ccodegen: 256 indentations level is not enough for codegen (Boshen) -5c31236isolated-declarations: Keep literal value for readonly property (#4106) (Dunqing) -e67c7d1isolated-declarations: Do not infer type for private parameters (#4105) (Dunqing) -3fcad5eisolated_declarations: Remove nested AssignmentPatterns from inside parameters (#4077) (michaelm) -f8d77e4isolated_declarations: Infer type of template literal expressions as string (#4068) (michaelm) -0f02608semantic: Bind `TSImportEqualsDeclaration`s (#4100) (Don Isaac) -4413e2dtransformer: Missing initializer for readonly consructor properties (#4103) (Don Isaac) ### Performance -7ed27b7isolated-declarations: Use `FxHashSet` instead of `Vec` to speed up the `contain` (#4074) (Dunqing) -9114c8esemantic: Keep a single map of unresolved references (#4107) (Luca Bruno) 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.17.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 }
|
|
oxc_diagnostics = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["napi"]
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|