mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.30.5] - 2024-09-29 ### Features -15552acnapi/transform: Display semantic error (#6160) (Boshen) -f50fdcdnapi/transform: Make react refresh option take a boolean (#6146) (Boshen) ### Bug Fixes -f27d59fnapi/transform: Remove confusing `jsx` option (#6159) (Boshen) -bfd1988transformer/react: Should not collect use-hooks if it's a nested member expression (#6143) (Dunqing) ### Refactor -ab187d1codegen: Restrict visibility of internal methods (#6145) (DonIsaac) -375bebetransformer: Improve parsing React pragmas (#6138) (overlookmotel) -0836f6btransformer: Move parsing pragmas into TS transform (#6137) (overlookmotel) -30424fatransformer: TS transforms only store options they need (#6135) (overlookmotel) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "oxc_ast"
|
|
version = "0.30.5"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include = ["/src"]
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_ast_macros = { workspace = true }
|
|
oxc_regular_expression = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_syntax = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
num-bigint = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
tsify = { workspace = true, optional = true }
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
serialize = [
|
|
"dep:serde",
|
|
"dep:serde_json",
|
|
"dep:tsify",
|
|
"dep:wasm-bindgen",
|
|
"oxc_allocator/serialize",
|
|
"oxc_regular_expression/serialize",
|
|
"oxc_span/serialize",
|
|
"oxc_syntax/serialize",
|
|
"oxc_syntax/to_js_string",
|
|
]
|