From 0e14bd8cab03424bae1ea125565ea6b25588aa5e Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 3 Jan 2025 18:12:27 +0800 Subject: [PATCH] chore(napi/parser): publish `oxc_parser_napi` closes #8118 --- Cargo.toml | 1 + napi/parser/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1eff0ff6634e5..f81b29ed7972d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,6 +98,7 @@ oxc_semantic = { version = "0.44.0", path = "crates/oxc_semantic" } oxc_span = { version = "0.44.0", path = "crates/oxc_span" } oxc_syntax = { version = "0.44.0", path = "crates/oxc_syntax" } oxc_transform_napi = { version = "0.44.0", path = "napi/transform" } +oxc_parser_napi = { version = "0.44.0", path = "napi/parser" } oxc_transformer = { version = "0.44.0", path = "crates/oxc_transformer" } oxc_traverse = { version = "0.44.0", path = "crates/oxc_traverse" } diff --git a/napi/parser/Cargo.toml b/napi/parser/Cargo.toml index 7ea1e3154d9d1..d2dfc6f9a5d06 100644 --- a/napi/parser/Cargo.toml +++ b/napi/parser/Cargo.toml @@ -7,7 +7,7 @@ edition.workspace = true homepage.workspace = true keywords.workspace = true license.workspace = true -publish = false +publish = true repository.workspace = true rust-version.workspace = true description.workspace = true