Skip to content

Commit

Permalink
chore: add output dist folder in turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
Yokaito committed Nov 22, 2023
1 parent d55429a commit 3f7272f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"lint": {},
"test": {},
Expand Down

0 comments on commit 3f7272f

Please sign in to comment.