mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.30.1] - 2024-09-24 ### Features -5c323a2minifier: Loop compressor passes (#6013) (Boshen) ### Bug Fixes -9ca202acodegen: Preserve newlines between comments (#6014) (Boshen) -4a99372codegen: Print jsdoc comments for `TSEnumMember`s (#6007) (camc314) -97a2c41isolated-declarations: False positive for class private getter with non-inferrable return type (#5987) (michaelm) ### Performance -2b17003linter, prettier, diagnostics: Use `FxHashMap` instead of `std::collections::HashMap` (#5993) (camchenry) -7b90d79transformer: `SparseStack` always keep minimum 1 entry (#5962) (overlookmotel) -28fe80atransformer: Logical assignment operator transform use `SparseStack` (#5960) (overlookmotel) -9f7d4b7transformer: Exponentiation operator transform use `SparseStack` (#5959) (overlookmotel) -5dc0154transformer: Nullish coalescing operator transform use `SparseStack` (#5942) (overlookmotel) -618e89etransformer: Arrow function transform: reduce stack memory usage (#5940) (overlookmotel) ### Documentation -5a0d17cast: Document more AST nodes (#6000) (DonIsaac) -18371ddoxc: Include feature-guarded modules in docs.rs (#6012) (DonIsaac) -1abfe8fsemantic: Document `SymbolTable` (#5998) (DonIsaac) -f5eee72semantic: Correct docs for `Reference` (#5992) (overlookmotel) -860f108transformer: Add to arrow functions transform docs (#5989) (overlookmotel) ### Refactor -0a2f687minifier: Move dce conditional expression to `RemoveDeadCode` (#5971) (Boshen) -f02bf51transformer: Arrow function transform: remove unnecessary assertion (#6002) (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>
39 lines
846 B
TOML
39 lines
846 B
TOML
[package]
|
|
name = "oxc_isolated_declarations"
|
|
version = "0.30.1"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include = [
|
|
"/examples",
|
|
"/src",
|
|
]
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_ast = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_syntax = { workspace = true, features = ["to_js_string"] }
|
|
|
|
bitflags = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true, features = ["glob"] }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_parser = { workspace = true }
|