From 29fc064c06d3b6551c475b8dc98d26b5aaf179e3 Mon Sep 17 00:00:00 2001 From: Kevin Tun Date: Tue, 27 Feb 2024 13:20:56 -0600 Subject: [PATCH] chore(package.json): update "dev" script to include additional filters for turbo run dev command The "dev" script in the package.json file has been updated to include additional filters for the turbo run dev command. This change allows for a more specific development environment by filtering only the specified modules (dicty-frontpage, stock-center, and publication) to be run in parallel. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 606f107b84..f1030111a7 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ ], "scripts": { "build": "turbo run build", - "dev": "turbo run dev --parallel", + "dev": "turbo run dev --filter=dicty-frontpage --filter=stock-center --filter=publication --parallel", "dev:mock": "turbo run dev:mock --filter dicty-frontpage", "test": "turbo run test", "test:watch": "turbo run test:watch",