Skip to content

Commit

Permalink
chore: update turbo config (#3658)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Aug 30, 2023
1 parent 3ed9445 commit 6c403ac
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**", ".next/**"]
"outputs": ["dist/**", ".next/**"],
"outputMode": "new-only"
},
"lint": { "outputs": [] },
"lint:fix": { "outputs": [] },
"prettier": { "outputs": [] },
"prettier:fix": { "outputs": [] },
"typecheck": { "outputs": [] },
"lint": { "outputs": [], "outputMode": "errors-only" },
"lint:fix": { "outputs": [], "outputMode": "errors-only" },
"prettier": { "outputs": [], "outputMode": "errors-only" },
"prettier:fix": { "outputs": [], "outputMode": "errors-only" },
"typecheck": { "outputs": [], "outputMode": "errors-only" },
"codegen": { "outputs": [] },
"extract": { "outputs": [] },
"worker:deploy": { "outputs": [] },
"dev": { "cache": false },
"start": { "cache": false },
"dev": { "cache": false, "persistent": true },
"start": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"test:dev": { "cache": false }
}
}

2 comments on commit 6c403ac

@vercel
Copy link

@vercel vercel bot commented on 6c403ac Aug 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

prerender – ./apps/prerender

prerender-git-main-lenster.vercel.app
prerender-lenster.vercel.app
prerender.lenster.xyz

@vercel
Copy link

@vercel vercel bot commented on 6c403ac Aug 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

lenster.vercel.app
lenster.xyz
web-lenster.vercel.app
web-git-main-lenster.vercel.app

Please sign in to comment.