mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
## [0.13.4] - 2024-06-07 ### Features -5c8e16ccoverage: Second transformer build does not print typescript (#3561) (Dunqing) -646b993coverage/transformer: Handle @jsx option (#3553) (Dunqing) -a939dddtransformer/typescript: Remove more typescript ast nodes (#3563) (Dunqing) -e8a20f8transformer/typescript: Remove typescript ast nodes (#3559) (Dunqing) -ee9a215transformer/typescript: Handle namespace directive correctly (#3532) (Dunqing) ### Bug Fixes -affb2c8codegen: Print indentation before directive (#3512) (Dunqing) -f6939cbtransformer: Store `react_importer` in `Bindings` in JSX transform (#3551) (overlookmotel) -7982b93transformer: Correct spans for JSX transform (#3549) (overlookmotel) -c00598btransformer: JSX set `reference_id` on refs to imports (#3524) (overlookmotel) ### Performance -37cdc13transformer: Faster checks if JSX plugin enabled (#3577) (overlookmotel) -9f467b8transformer: Avoid fragment update where possible (#3535) (overlookmotel) -ac394f0transformer: JSX parse pragma only once (#3534) (overlookmotel) ### Documentation -1d3c0d7span: Add doc comments to `oxc_span::Span` (#3543) (Don Isaac) ### Refactor -f2113aetransformer: Reduce cloning and referencing `Rc`s (#3576) (overlookmotel) -0948124transformer: Pass `Rc`s by value (#3550) (overlookmotel) -e4d74actransformer: Remove `update_fragment` from JSX transform (#3541) (overlookmotel) -73b7864transformer: Combine import and usage in JSX transform (#3540) (overlookmotel) -6978269transformer/typescript: Replace reference collector with symbols references (#3533) (Dunqing) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
33 lines
868 B
TOML
33 lines
868 B
TOML
[package]
|
|
name = "oxc_codegen"
|
|
version = "0.13.4"
|
|
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]
|
|
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 }
|