diff --git a/package.json b/package.json index 327bdd1..cca6698 100644 --- a/package.json +++ b/package.json @@ -11,12 +11,12 @@ } }, "scripts": { - "build": "turbo run build", - "dev": "turbo run dev", - "start": "turbo run start", - "lhci": "turbo run lhci", - "lint": "turbo run lint", - "test": "turbo run test", + "build": "turbo run build --no-daemon", + "dev": "turbo run dev --parallel --no-cache --no-daemon", + "start": "turbo run start --no-daemon", + "lhci": "turbo run lhci --no-daemon", + "lint": "turbo run lint --no-daemon", + "test": "turbo run test --no-daemon", "release": "lerna version patch --yes && lerna publish from-git --yes", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "postinstall": "npx husky install" diff --git a/turbo.json b/turbo.json index 41d5511..140b838 100644 --- a/turbo.json +++ b/turbo.json @@ -4,7 +4,7 @@ "pipeline": { "build": { "dependsOn": ["^build"], - "outputs": [".next/**", "!.next/cache/**"] + "outputs": [".next/**", "!.next/cache/**", "dist/**"] }, "lint": {}, "test": {},