From 56c44264f9cb6089448cdfba701b357ab934603b Mon Sep 17 00:00:00 2001 From: Davide Date: Sat, 28 Dec 2024 02:20:16 +0100 Subject: [PATCH] reintroduce test-prod --- package.json | 1 + turbo.json | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/package.json b/package.json index 5536119db..2ac8f9912 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,7 @@ "lint": "turbo run lint --filter @gd/desktop --filter @gd/ui", "lint-fix": "turbo run lint-fix --filter @gd/desktop --filter @gd/ui", "test": "turbo run test", + "test-prod": "turbo run test --filter @gd/desktop", "rspc-bindings:generate": "cargo run -p carbon_app -- --generate-ts-bindings", "------divider-prisma-generate-normal------": "------divider------", "prisma:generate": "cargo run -p prisma-cli -- generate --schema=./crates/carbon_app/prisma/schema.prisma", diff --git a/turbo.json b/turbo.json index 9869570cf..13c8674c1 100644 --- a/turbo.json +++ b/turbo.json @@ -31,6 +31,10 @@ "dependsOn": ["^test"], "cache": false }, + "test-prod": { + "dependsOn": ["^test-prod"], + "cache": false + }, "lint": { "cache": false },