From 8cb6cd3c792ba8eaa4f3c57fde622fc57fcd88f8 Mon Sep 17 00:00:00 2001 From: Ken Jiang Date: Fri, 30 Jan 2026 09:28:32 -0500 Subject: [PATCH 1/2] fix turbojson --- bindings/lingua-wasm/turbo.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/bindings/lingua-wasm/turbo.json b/bindings/lingua-wasm/turbo.json index f0bd38c3..a4533054 100644 --- a/bindings/lingua-wasm/turbo.json +++ b/bindings/lingua-wasm/turbo.json @@ -3,8 +3,18 @@ "extends": ["//"], "tasks": { "build": { - "outputs": ["nodejs/**", "web/**"] + "outputs": ["nodejs/**", "web/**"], + "inputs": [ + "$TURBO_DEFAULT$", + "../../Cargo.toml", + "../../Cargo.lock", + "../../crates/lingua/Cargo.toml", + "../../crates/lingua/build.rs", + "../../crates/lingua/src/**/*.rs", + "../../serde_json/Cargo.toml", + "../../serde_json/Cargo.lock", + "../../serde_json/src/**/*.rs" + ] } } } - From 257f567ebbd3aafa988eb5bd376576e01f66bc8c Mon Sep 17 00:00:00 2001 From: Ken Jiang Date: Fri, 30 Jan 2026 11:00:35 -0500 Subject: [PATCH 2/2] lingua glob --- bindings/lingua-wasm/package.json | 1 - bindings/lingua-wasm/turbo.json | 12 ++++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/bindings/lingua-wasm/package.json b/bindings/lingua-wasm/package.json index 7d1e6143..28b3868e 100644 --- a/bindings/lingua-wasm/package.json +++ b/bindings/lingua-wasm/package.json @@ -37,4 +37,3 @@ ], "license": "MIT" } - diff --git a/bindings/lingua-wasm/turbo.json b/bindings/lingua-wasm/turbo.json index a4533054..8198c178 100644 --- a/bindings/lingua-wasm/turbo.json +++ b/bindings/lingua-wasm/turbo.json @@ -6,14 +6,10 @@ "outputs": ["nodejs/**", "web/**"], "inputs": [ "$TURBO_DEFAULT$", - "../../Cargo.toml", - "../../Cargo.lock", - "../../crates/lingua/Cargo.toml", - "../../crates/lingua/build.rs", - "../../crates/lingua/src/**/*.rs", - "../../serde_json/Cargo.toml", - "../../serde_json/Cargo.lock", - "../../serde_json/src/**/*.rs" + "../../**/Cargo.toml", + "../../**/Cargo.lock", + "../../**/build.rs", + "../../**/src/**" ] } }