From 8cb6cd3c792ba8eaa4f3c57fde622fc57fcd88f8 Mon Sep 17 00:00:00 2001 From: Ken Jiang Date: Fri, 30 Jan 2026 09:28:32 -0500 Subject: [PATCH 1/4] 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/4] 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/**" ] } } From 8ca7a9c5d8d3593ff798e44f7bdefb2efbcf90c3 Mon Sep 17 00:00:00 2001 From: Ken Jiang Date: Tue, 3 Feb 2026 18:15:38 -0500 Subject: [PATCH 3/4] update --- bindings/lingua-wasm/turbo.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/bindings/lingua-wasm/turbo.json b/bindings/lingua-wasm/turbo.json index 8198c178..e08c6596 100644 --- a/bindings/lingua-wasm/turbo.json +++ b/bindings/lingua-wasm/turbo.json @@ -5,11 +5,14 @@ "build": { "outputs": ["nodejs/**", "web/**"], "inputs": [ - "$TURBO_DEFAULT$", - "../../**/Cargo.toml", - "../../**/Cargo.lock", - "../../**/build.rs", - "../../**/src/**" + "package.json", + "../../Cargo.toml", + "../../Cargo.lock", + "../../.cargo/config.toml", + "../../crates/lingua/Cargo.toml", + "../../crates/lingua/src/**/*.rs", + "../../serde_json/Cargo.toml", + "../../serde_json/src/**/*.rs" ] } } From b8b6d621e8abaf1c09cc7f3d4df70b271ab9233c Mon Sep 17 00:00:00 2001 From: Ken Jiang Date: Thu, 5 Feb 2026 11:03:55 -0500 Subject: [PATCH 4/4] fixx --- bindings/lingua-wasm/turbo.json | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/lingua-wasm/turbo.json b/bindings/lingua-wasm/turbo.json index e08c6596..8685f8e7 100644 --- a/bindings/lingua-wasm/turbo.json +++ b/bindings/lingua-wasm/turbo.json @@ -10,6 +10,7 @@ "../../Cargo.lock", "../../.cargo/config.toml", "../../crates/lingua/Cargo.toml", + "../../crates/lingua/build.rs", "../../crates/lingua/src/**/*.rs", "../../serde_json/Cargo.toml", "../../serde_json/src/**/*.rs"