mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.36.0] - 2024-11-09 -b11ed2cast: [**BREAKING**] Remove useless `ObjectProperty::init` field (#7220) (Boshen) -0e4adc1ast: [**BREAKING**] Remove invalid expressions from `TSEnumMemberName` (#7219) (Boshen) -846711ctransformer: [**BREAKING**] Change API to take a `&TransformOptions` instead of `TransformOptions` (#7213) (Boshen) -092de67types: [**BREAKING**] Append `rest` field into `elements` for objects and arrays to align with estree (#7212) (ottomated) -d1d1874ast: [**BREAKING**] Change `comment.span` to real position that contain `//` and `/*` (#7154) (Boshen) -843bce4ast: [**BREAKING**] `IdentifierReference::reference_id` return `ReferenceId` (#7126) (overlookmotel) ### Features -cc8a191ast: Methods on AST nodes to get `scope_id` etc (#7127) (overlookmotel) -dc0215cast_tools: Add #[estree(append_to)], remove some custom serialization code (#7149) (ottomated) -9d6cc9destree: ESTree compatibility for all literals (#7152) (ottomated) -b74686cisolated-declarations: Support transform TSExportAssignment declaration (#7204) (Dunqing) -ad3a2f5tasks/compat_data: Generate our own compat table (#7176) (Boshen) -b4258eetransformer: Add defaulted `Module::Preserve` option (#7225) (Boshen) -324c3fetransformer: Add `TransformOptions::module` option (#7188) (Boshen) -a166a4atransformer: Add esbuild comma separated target API `--target=es2020,chrome58` (#7210) (Boshen) -3a20b90transformer: Add es target to `engineTargets` (#7193) (Boshen) -22898c8transformer: Warn BigInt when targeting < ES2020 (#7184) (Boshen) -a579011transformer: Add features `ES2018NamedCapturingGroupsRegex` and `ES2018LookbehindRegex` (#7182) (Boshen) -8573f79transformer: Turn on async_to_generator and async_generator_functions plugins in enable_all (#7135) (Dunqing) -df77241transformer: Enable `ArrowFunctionConverter` in `async-to-generator` and `async-generator-functions` plugins (#7113) (Dunqing) -b6a5750transformer/arrow-function-converter: Move scope to changed scope for `this_var` if scope have changed (#7125) (Dunqing) -1910227transformer/async-to-generator: Support inferring the function name from the ObjectPropertyValue's key (#7201) (Dunqing) -ffa8604transformer/async-to-generator: Do not transform await expression if is not inside async function (#7138) (Dunqing) -e536d47transformer/babel: Add support for trying to get the `Module` from `BabelPlugins` (#7218) (Dunqing) -5cfdc05transformer/typescript: Support transform `export =` and `import = require(...)` when module is commonjs (#7206) (Dunqing) ### Bug Fixes -c82b273transformer/async-generator-functions: Only transform object method in exit_function (#7200) (Dunqing) -b2a888dtransformer/async-generator-functions: Incorrect transformation for `for await` if it's not placed in a block (#7148) (Dunqing) -19892edtransformer/async-generator-functions: Transform incorrectly for `for await` if it's in LabeledStatement (#7147) (Dunqing) -ede10dctransformer/async-to-generator: Incorrect transform when super expression is inside async method (#7171) (Dunqing) -293d072transformer/async-to-generator: Only transform object method in exit_function (#7199) (Dunqing) -ae692d7transformer/async_to_generator: Fix checking if function is class method (#7117) (overlookmotel) -eea4ab8transformer/helper-loader: Incorrect `SymbolFlags` for default import when `SourceType` is script (#7226) (Dunqing) ### Refactor -d27e14fast: `AstKind::as_*` methods take `self` (#5546) (overlookmotel) -fac5042ast: Use `scope_id` etc methods (#7130) (overlookmotel) -a297765minifier: Use `map` and `and_then` instead of let else (#7178) (7086cmd) -fc86703napi/transform: Change test files to TypeScript (#7221) (Boshen) -c5485aesemantic: Add `ancestor_kinds` iterator function (#7217) (camchenry) -abf1602semantic: Rename `iter_parents` to `ancestors` (#7216) (camchenry) -42171ebsemantic: Rename `ancestors` to `ancestor_ids` (#7215) (camchenry) -de56083transformer: Add `impl TryFrom<EngineTargets> for EnvOptions` (#7191) (Boshen) -0a43c64transformer: Move `ESTarget` to its own file (#7189) (Boshen) -0e1f12ctransformer: Remove unimplemented `EnvOptions::bugfixes` (#7162) (Boshen) -a981caftransformer: Add `Engine` enum for `EngineTargets` (#7161) (Boshen) -8340243transformer: Rename `Query` to `BrowserslistQuery` (#7143) (Boshen) -481f7e6transformer: Change `Targets` to `EngineTargets` (#7142) (Boshen) -55e6989transformer: Deserialize engine target strings to specific keys (#7139) (Boshen) -fdfd9a4transformer: Use `scope_id` etc methods (#7128) (overlookmotel) -ff8bd50transformer: Move implementation of ArrowFunction to common/ArrowFunctionConverter (#7107) (Dunqing) -4a515betransformer/arrow-function-coverter: Rename function name and add some comments to explain confusing parts. (#7203) (Dunqing) -c307e1btransformer/arrow-functions: Pass `ArenaBox` as function param (#7169) (overlookmotel) -217d433transformer/arrow-functions: Remove unused `&mut self` function param (#7165) (overlookmotel) -426df71transformer/arrow-functions: Use `scope_id` method (#7164) (overlookmotel) -11c5e12transformer/arrow-functions: Correct comments (#7163) (overlookmotel) -1238506transformer/async-generator-function: Remove inactive `#[allow(clippy::unused_self)]` attrs (#7167) (overlookmotel) -84ee581transformer/async-generator-functions: Simplify identifying whether within an async generator function (#7170) (overlookmotel) -1b12328transformer/async-generator-functions: Use `clone` not `clone_in` on `LabelIdentifier` (#7172) (overlookmotel) -cd1006ftransformer/async-generator-functions: Do not transform yield expression where inside generator function (#7134) (Dunqing) -2c5734dtransformer/async-generator-functions: Do not transform await expression where inside ArrowFunctionExpression (#7132) (Dunqing) -5ce83bdtransformer/async-generator-functions: Remove dead code for handle await expression (#7131) (Dunqing) -e04ee97transformer/async-generator-functions: Move handling of `MethodDefinition`'s value to `exit_function` (#7106) (Dunqing) -b57d5a5transformer/async-to-generator: Remove unused `&self` function param (#7166) (overlookmotel) -f80085ctransformer/async-to-generator: Move handling of `MethodDefinition`'s value to `exit_function` (#7105) (Dunqing) -e2241e6transformer/jsx-self: Remove unused `&self` function params (#7159) (overlookmotel) -1dfd241transformer/optional-catch-binding: Remove inactive `#[allow(clippy::unused_self)]` attr (#7158) (overlookmotel) -fd9b44ctransformer/typescript: Remove inactive `#[allow(clippy::unused_self)]` attr (#7160) (overlookmotel) -cacfb9btraverse: Use `symbol_id` etc methods (#7129) (overlookmotel) ### Styling -38a6df6transformer/arrow-functions: Semicolon after return statements (#7168) (overlookmotel) -64b7e3atransformer/async-generator-functions: Import `oxc_allocator::Vec` as `ArenaVec` (#7173) (overlookmotel) ### Testing -be819ddnapi/transform: Add test for not default es transform (Boshen) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
246 lines
8.6 KiB
TOML
246 lines
8.6 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["apps/*", "crates/*", "napi/*", "tasks/*", "wasm/*"]
|
|
exclude = ["tasks/lint_rules"]
|
|
|
|
[workspace.package]
|
|
authors = ["Boshen <boshenc@gmail.com>", "Oxc contributors"]
|
|
categories = ["compilers", "development-tools", "web-programming"]
|
|
edition = "2021"
|
|
homepage = "https://oxc.rs"
|
|
keywords = ["JavaScript", "TypeScript", "linter", "minifier", "parser"]
|
|
license = "MIT"
|
|
repository = "https://github.com/oxc-project/oxc"
|
|
rust-version = "1.76" # Support last 6 minor versions.
|
|
description = "A collection of JavaScript tools written in Rust."
|
|
|
|
# <https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html>
|
|
[workspace.lints.rust]
|
|
absolute_paths_not_starting_with_crate = "warn"
|
|
non_ascii_idents = "warn"
|
|
unit-bindings = "warn"
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)', 'cfg(coverage_nightly)'] }
|
|
|
|
[workspace.lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
empty_docs = { level = "allow", priority = 1 } # From `Tsify`
|
|
# restriction
|
|
dbg_macro = "warn"
|
|
todo = "warn"
|
|
unimplemented = "warn"
|
|
print_stdout = "warn" # Must be opt-in
|
|
print_stderr = "warn" # Must be opt-in
|
|
allow_attributes = "warn"
|
|
# I like the explicitness of this rule as it removes confusion around `clone`.
|
|
# This increases readability, avoids `clone` mindlessly and heap allocating by accident.
|
|
clone_on_ref_ptr = "warn"
|
|
# These two are mutually exclusive, I like `mod.rs` files for better fuzzy searches on module entries.
|
|
self_named_module_files = "warn" # "-Wclippy::mod_module_files"
|
|
empty_drop = "warn"
|
|
empty_structs_with_brackets = "warn"
|
|
exit = "warn"
|
|
filetype_is_file = "warn"
|
|
get_unwrap = "warn"
|
|
impl_trait_in_params = "warn"
|
|
rc_buffer = "warn"
|
|
rc_mutex = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
unnecessary_safety_comment = "warn"
|
|
undocumented_unsafe_blocks = "warn"
|
|
infinite_loop = "warn"
|
|
# I want to write the best Rust code so pedantic is enabled.
|
|
# We should only disable rules globally if they are either false positives, chaotic, or does not make sense.
|
|
pedantic = { level = "warn", priority = -1 }
|
|
# Allowed rules
|
|
# pedantic
|
|
# This rule is too pedantic, I don't want to force this because naming things are hard.
|
|
module_name_repetitions = "allow"
|
|
# All triggers are mostly ignored in our codebase, so this is ignored globally.
|
|
struct_excessive_bools = "allow"
|
|
too_many_lines = "allow"
|
|
# `#[must_use]` is creating too much noise for this codebase, it does not add much value
|
|
# except nagging the programmer to add a `#[must_use]` after clippy has been run.
|
|
# Having `#[must_use]` everywhere also hinders readability.
|
|
must_use_candidate = "allow"
|
|
# Too annoying, we import by name anyway.
|
|
wildcard_imports = "allow"
|
|
# used_underscore_binding= "allow"
|
|
doc_markdown = "allow"
|
|
# nursery
|
|
# `const` functions do not make sense for our project because this is not a `const` library.
|
|
# This rule also confuses newcomers and forces them to add `const` blindlessly without any reason.
|
|
missing_const_for_fn = "allow"
|
|
# cargo
|
|
cargo = { level = "warn", priority = -1 }
|
|
multiple_crate_versions = "allow"
|
|
cargo_common_metadata = "allow" # FIXME
|
|
doc_lazy_continuation = "allow" # FIXME
|
|
|
|
[workspace.dependencies]
|
|
# publish = true
|
|
oxc = { version = "0.36.0", path = "crates/oxc" }
|
|
oxc_allocator = { version = "0.36.0", path = "crates/oxc_allocator" }
|
|
oxc_ast = { version = "0.36.0", path = "crates/oxc_ast" }
|
|
oxc_ast_macros = { version = "0.36.0", path = "crates/oxc_ast_macros" }
|
|
oxc_cfg = { version = "0.36.0", path = "crates/oxc_cfg" }
|
|
oxc_codegen = { version = "0.36.0", path = "crates/oxc_codegen" }
|
|
oxc_data_structures = { version = "0.36.0", path = "crates/oxc_data_structures" }
|
|
oxc_diagnostics = { version = "0.36.0", path = "crates/oxc_diagnostics" }
|
|
oxc_ecmascript = { version = "0.36.0", path = "crates/oxc_ecmascript" }
|
|
oxc_estree = { version = "0.36.0", path = "crates/oxc_estree" }
|
|
oxc_index = { version = "0.36.0", path = "crates/oxc_index" }
|
|
oxc_isolated_declarations = { version = "0.36.0", path = "crates/oxc_isolated_declarations" }
|
|
oxc_mangler = { version = "0.36.0", path = "crates/oxc_mangler" }
|
|
oxc_minifier = { version = "0.36.0", path = "crates/oxc_minifier" }
|
|
oxc_module_lexer = { version = "0.36.0", path = "crates/oxc_module_lexer" }
|
|
oxc_parser = { version = "0.36.0", path = "crates/oxc_parser" }
|
|
oxc_regular_expression = { version = "0.36.0", path = "crates/oxc_regular_expression" }
|
|
oxc_semantic = { version = "0.36.0", path = "crates/oxc_semantic" }
|
|
oxc_sourcemap = { version = "0.36.0", path = "crates/oxc_sourcemap" }
|
|
oxc_span = { version = "0.36.0", path = "crates/oxc_span" }
|
|
oxc_syntax = { version = "0.36.0", path = "crates/oxc_syntax" }
|
|
oxc_transform_napi = { version = "0.36.0", path = "napi/transform" }
|
|
oxc_transformer = { version = "0.36.0", path = "crates/oxc_transformer" }
|
|
oxc_traverse = { version = "0.36.0", path = "crates/oxc_traverse" }
|
|
|
|
# publish = false
|
|
oxc_linter = { path = "crates/oxc_linter" }
|
|
oxc_macros = { path = "crates/oxc_macros" }
|
|
oxc_prettier = { path = "crates/oxc_prettier" }
|
|
oxc_tasks_common = { path = "tasks/common" }
|
|
oxc_tasks_transform_checker = { path = "tasks/transform_checker" }
|
|
|
|
# Relaxed version so the user can decide which version to use.
|
|
napi = "3.0.0-alpha"
|
|
napi-build = "2.1.3"
|
|
napi-derive = "3.0.0-alpha"
|
|
|
|
# Relaxed version so the user can decide which version to use.
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", default-features = false }
|
|
unicode-id-start = "1"
|
|
|
|
aho-corasick = "1.1.3"
|
|
allocator-api2 = "0.2.18"
|
|
assert-unchecked = "0.1.2"
|
|
base64 = "0.22.1"
|
|
base64-simd = "0.8"
|
|
bitflags = "2.6.0"
|
|
bpaf = "0.9.15"
|
|
bumpalo = "3.16.0"
|
|
cfg-if = "1.0.0"
|
|
compact_str = "0.8.0"
|
|
console = "0.15.8"
|
|
console_error_panic_hook = "0.1.7"
|
|
convert_case = "0.6.0"
|
|
cow-utils = "0.1.3"
|
|
criterion2 = { version = "2.0.0", default-features = false }
|
|
dashmap = "6.1.0"
|
|
encoding_rs = "0.8.34"
|
|
encoding_rs_io = "0.1.7"
|
|
env_logger = { version = "0.11.5", default-features = false }
|
|
flate2 = "1.0.34"
|
|
futures = "0.3.31"
|
|
glob = "0.3.1"
|
|
globset = "0.4.15"
|
|
handlebars = "6.1.0"
|
|
humansize = "2.1.3"
|
|
ignore = "0.4.23"
|
|
indexmap = "2.6.0"
|
|
insta = "1.40.0"
|
|
itertools = "0.13.0"
|
|
itoa = "1.0.11"
|
|
jemallocator = "0.5.4"
|
|
json-strip-comments = "1.0.4"
|
|
language-tags = "0.3.2"
|
|
lazy_static = "1.5.0"
|
|
log = "0.4.22"
|
|
markdown = "1.0.0-alpha.21"
|
|
memchr = "2.7.4"
|
|
memoffset = "0.9.1"
|
|
miette = { package = "oxc-miette", version = "1.0.2", features = ["fancy-no-syscall"] }
|
|
mimalloc = "0.1.43"
|
|
mime_guess = "2.0.5"
|
|
nonmax = "0.5.5"
|
|
num-bigint = "0.4.6"
|
|
num-traits = "0.2.19"
|
|
once_cell = "1.20.2"
|
|
oxc-browserslist = "1.1.0"
|
|
oxc_resolver = "2.0.0"
|
|
petgraph = "0.6.5"
|
|
phf = "0.11.2"
|
|
pico-args = "0.5.0"
|
|
prettyplease = "0.2.22"
|
|
project-root = "0.2.2"
|
|
rayon = "1.10.0"
|
|
regex = "1.11.0"
|
|
ropey = "1.6.1"
|
|
rust-lapper = "1.1.0"
|
|
rustc-hash = "2.*"
|
|
ryu-js = "1.0.1"
|
|
saphyr = "0.0.3"
|
|
schemars = "0.8.21"
|
|
seq-macro = "0.3.5"
|
|
serde = "1.0.210"
|
|
serde-wasm-bindgen = "0.6.5"
|
|
serde_json = "1.0.128"
|
|
sha1 = "0.10.6"
|
|
simdutf8 = { version = "0.1.5", features = ["aarch64_neon"] }
|
|
similar = "2.6.0"
|
|
tempfile = "3.13.0"
|
|
tokio = "1.40.0"
|
|
tower-lsp = "0.20.0"
|
|
tracing-subscriber = "0.3.18"
|
|
tsify = "0.4.5"
|
|
ureq = { version = "2.10.1", default-features = false }
|
|
url = "2.5.2"
|
|
walkdir = "2.5.0"
|
|
wasm-bindgen = "0.2.95"
|
|
|
|
[workspace.metadata.cargo-shear]
|
|
ignored = ["napi", "oxc_transform_napi", "prettyplease"]
|
|
|
|
[profile.dev]
|
|
# Disabling debug info speeds up local and CI builds,
|
|
# and we don't rely on it for debugging that much.
|
|
debug = false
|
|
|
|
[profile.dev.package]
|
|
# Compile macros with some optimizations to make consuming crates build faster
|
|
oxc_macros.opt-level = 1
|
|
oxc_ast_macros.opt-level = 1
|
|
# Compile insta and its dependencies in release mode for faster snapshot tests
|
|
# See: https://insta.rs/docs/quickstart/#optional-faster-runs
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|
|
|
|
[profile.release.package.oxc_wasm]
|
|
opt-level = 'z'
|
|
|
|
[profile.release]
|
|
# Configurations explicitly listed here for clarity.
|
|
# Using the best options for performance.
|
|
opt-level = 3
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
strip = "symbols" # Set to `false` for debug information
|
|
debug = false # Set to `true` for debug information
|
|
panic = "abort" # Let it crash and force ourselves to write safe Rust
|
|
|
|
# Profile used for release mode, but with debugging information for profiling
|
|
# and debugging. Use `cargo build --profile=release-with-debug` to build with this profile.
|
|
[profile.release-with-debug]
|
|
inherits = "release"
|
|
strip = false # Keep debug information in binary
|
|
debug = true # Include maximum amount of debug information
|
|
|
|
# Profile for `cargo coverage`
|
|
[profile.coverage]
|
|
inherits = "release"
|
|
opt-level = 2 # Compile faster
|
|
codegen-units = 256 # Compile faster
|
|
lto = "thin" # Faster compile time with thin LTO
|
|
debug-assertions = true # Make sure `debug_assert!`s pass
|
|
overflow-checks = true # Catch arithmetic overflow errors
|
|
incremental = true
|