mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 23:48:26 -04:00
* Migrate to Tauri v2 Release Canidate * Formatting * Update pnpm * Update all tauri deps (js and rust) to Release Candidate 2 - A lot of misc fixes due to changes in the new versions of tauri, rspc and specta * Recreate pnpm-lock * Fix pnpm-lock * Formatting * Use 10 chars SHA for git deps - Update a couple of rust dependencies - Add taplo for toml auto formatting - Adjust some formatting configurations - Updated prettier and its plugins * Fix formatter settings * Minor improvements to Cargo.toml format --------- Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
30 lines
488 B
JSON
30 lines
488 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"inputs": ["**/*.ts", "!src-tauri/**", "!node_modules/**"],
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalEnv": [
|
|
"PORT",
|
|
"NODE_ENV",
|
|
"GENERATE_SOURCEMAP",
|
|
"DEV",
|
|
"VITE_SDSERVER_ORIGIN",
|
|
"VITE_SD_DEMO_MODE",
|
|
"VITE_SDSERVER_ORIGIN",
|
|
"VITE_LANDING_ORIGIN"
|
|
]
|
|
}
|