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 },