mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
## [0.17.1] - 2024-07-06 ### Bug Fixes -aa585d3ast_codegen, ast: Visit `ExpressionArrayElement` as `Expression`. (#4061) (rzvxa) -564a75acodegen: Missing TypeParameters in TSConstructSignature (#4063) (michaelm) -adee728isolated_declarations: Don't report an error for parameters if they are ObjectPattern or ArrayPattern with an explicit type (#4065) (michaelm) -1b8f208isolated_declarations: Correct emit for private static methods (#4064) (michaelm) -719fb96minifier: Omit dce `undefined` which can be a shadowed variable (#4073) (Boshen) -150f4d9napi/transform: Display error with spanned messages (Boshen) ### Performance -7fe2a2fparser: Do not copy comments (#4067) (overlookmotel) ### Refactor -8fa98e0ast: Inline trivial functions and shorten code (#4066) (overlookmotel) -65aee19isolated-declarations: Reorganize scope tree (#4070) (Luca Bruno) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
34 lines
915 B
TOML
34 lines
915 B
TOML
[package]
|
|
name = "oxc_codegen"
|
|
version = "0.17.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
|
|
include = ["/examples", "/src"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_ast = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_allocator = { workspace = true }
|
|
oxc_syntax = { workspace = true }
|
|
oxc_sourcemap = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
daachorse = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
[dev-dependencies]
|
|
oxc_parser = { workspace = true }
|
|
base64 = { workspace = true }
|