Skip to content

Commit

Permalink
build(dev): desabilita o tui
Browse files Browse the repository at this point in the history
vercel/turborepo#9034
esse pr no turbo repo resolve esse problema de `panic!`
mais até o momento usar o tui tá problemático
  • Loading branch information
joaoprocopio committed Aug 20, 2024
1 parent c5c2b23 commit 42ecad6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 19 deletions.
8 changes: 1 addition & 7 deletions apps/mobile/turbo.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
{
"$schema": "https://turborepo.org/schema.json",
"extends": ["//"],
"tasks": {
"dev": {
"persistent": true,
"interactive": true
}
}
"extends": ["//"]
}
4 changes: 0 additions & 4 deletions apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"name": "@nutrilife/server",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
Expand Down
1 change: 1 addition & 0 deletions apps/server/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}

bootstrap();
7 changes: 1 addition & 6 deletions apps/server/turbo.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"$schema": "https://turborepo.org/schema.json",
"extends": ["//"],
"tasks": {
"dev": {
"persistent": false
}
}
"extends": ["//"]
}
4 changes: 2 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"dev": {
"cache": false,
"persistent": false
"interactive": false,
"persistent": true
},
"clean": {
"cache": false
Expand Down

0 comments on commit 42ecad6

Please sign in to comment.