From acf1ee7f9e682293b29093cb9449281f83a796f8 Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 29 Jul 2023 11:33:06 +0900 Subject: [PATCH] chore: add root serve script --- package.json | 1 + turbo.json | 3 +++ 2 files changed, 4 insertions(+) diff --git a/package.json b/package.json index 9246184..2eb541c 100755 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "scripts": { "dev": "turbo run dev --parallel --continue", "build": "turbo run build", + "serve": "turbo run serve", "test:e2e": "turbo run test:e2e --parallel --continue", "lint": "turbo run lint", "clean": "turbo run clean && rm -rf node_modules" diff --git a/turbo.json b/turbo.json index 6b62ba6..4e8cc1f 100644 --- a/turbo.json +++ b/turbo.json @@ -8,6 +8,9 @@ "cache": false, "dependsOn": ["^build"] }, + "serve": { + "cache": false + }, "test:e2e": { "cache": false },