forked from imbytecat/fullstack-starter
chore
This commit is contained in:
34
turbo.json
34
turbo.json
@@ -1,31 +1,31 @@
|
||||
{
|
||||
"$schema": "./node_modules/turbo/schema.json",
|
||||
"dangerouslyDisablePackageManagerCheck": true,
|
||||
"globalDependencies": [
|
||||
"package.json",
|
||||
"bun.lock",
|
||||
"turbo.json",
|
||||
"biome.json"
|
||||
],
|
||||
"tasks": {
|
||||
"build:compile": {
|
||||
"dependsOn": ["build:vite"],
|
||||
"outputs": ["out/**", "src-tauri/binaries/**"]
|
||||
"build": {
|
||||
"outputs": ["dist/**", ".output/**"]
|
||||
},
|
||||
"build:tauri": {
|
||||
"dependsOn": ["build:compile"],
|
||||
"outputs": ["src-tauri/target/release/bundle/**"]
|
||||
},
|
||||
"build:vite": {
|
||||
"outputs": [".output/**"]
|
||||
"compile": {
|
||||
"dependsOn": ["build"],
|
||||
"outputs": ["out/**"]
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"dev:tauri": {
|
||||
"cache": false,
|
||||
"dependsOn": ["build:compile"],
|
||||
"persistent": true,
|
||||
"with": ["dev:vite"]
|
||||
"fix": {
|
||||
"outputs": []
|
||||
},
|
||||
"dev:vite": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck"],
|
||||
"inputs": ["tsconfig.json", "tsconfig.*.json", "**/*.{ts,tsx}"],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
"ui": "tui"
|
||||
|
||||
Reference in New Issue
Block a user