From c77cd24fec55f511962593d9eff6c850f9bd7066 Mon Sep 17 00:00:00 2001 From: DonIsaac <22823424+DonIsaac@users.noreply.github.com> Date: Tue, 24 Sep 2024 02:41:59 +0000 Subject: [PATCH] chore(oxc): include all features in `all` feature (#6011) --- crates/oxc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc/Cargo.toml b/crates/oxc/Cargo.toml index 844d591fa4cf8..6edc40a73d6eb 100644 --- a/crates/oxc/Cargo.toml +++ b/crates/oxc/Cargo.toml @@ -45,7 +45,7 @@ oxc_syntax = { workspace = true } oxc_transformer = { workspace = true, optional = true } [features] -full = ["codegen", "mangler", "minifier", "semantic", "transformer"] +full = ["codegen", "mangler", "minifier", "semantic", "transformer", "isolated_declarations", "sourcemap", "cfg"] semantic = ["oxc_semantic"] transformer = ["oxc_transformer"]