From c28f937bf33dd3142160595d4d9aaa05206e0bdc Mon Sep 17 00:00:00 2001 From: steveluscher Date: Mon, 3 Jun 2024 17:34:15 +0000 Subject: [PATCH] Self-compile the legacy library before running tests --- turbo.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/turbo.json b/turbo.json index f941afb0e684..b144a9db4a0b 100644 --- a/turbo.json +++ b/turbo.json @@ -134,15 +134,15 @@ "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"] }, "@solana/web3.js#test:live-with-test-validator": { - "dependsOn": ["^compile:js"], + "dependsOn": ["compile:js"], "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"] }, "@solana/web3.js#test:typecheck": { - "dependsOn": ["^compile:typedefs"], + "dependsOn": ["compile:typedefs"], "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**", "tsconfig.*"] }, "@solana/web3.js#test:unit:node": { - "dependsOn": ["^compile:js"], + "dependsOn": ["compile:js"], "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"] } },