chore(admin): run deploy through turbo
This commit is contained in:
parent
657ebc44b9
commit
13af8f66c0
3 changed files with 7 additions and 3 deletions
|
|
@ -25,7 +25,7 @@ pnpm deploy:admin
|
|||
Or directly from the app package:
|
||||
|
||||
```bash
|
||||
pnpm --filter @xtablo/admin deploy
|
||||
pnpm --filter @xtablo/admin run deploy
|
||||
```
|
||||
|
||||
## Required API configuration
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"dev:api": "turbo dev --filter=@xtablo/api",
|
||||
"deploy:main:staging": "turbo deploy:staging --filter=@xtablo/main",
|
||||
"deploy:main:prod": "turbo deploy:prod --filter=@xtablo/main",
|
||||
"deploy:admin": "pnpm --filter @xtablo/admin deploy",
|
||||
"deploy:admin": "turbo deploy --filter=@xtablo/admin",
|
||||
"deploy:chat": "turbo deploy --filter=@xtablo/chat-worker",
|
||||
"deploy:external": "turbo deploy --filter=@xtablo/external",
|
||||
"lint": "turbo lint",
|
||||
|
|
|
|||
|
|
@ -18,6 +18,11 @@
|
|||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"deploy": {
|
||||
"cache": false,
|
||||
"dependsOn": ["build"],
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"lint": {
|
||||
"inputs": ["src/**", "biome.json", "package.json"],
|
||||
"outputLogs": "new-only"
|
||||
|
|
@ -48,4 +53,3 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue