chore
3
.vscode/settings.json
vendored
@@ -37,7 +37,8 @@
|
||||
"files.associations": {
|
||||
".env": "dotenv",
|
||||
".env.*": "dotenv",
|
||||
"**/tsconfig*.json": "jsonc",
|
||||
"**/tsconfig.json": "jsonc",
|
||||
"**/tsconfig.*.json": "jsonc",
|
||||
"**/biome.json": "jsonc",
|
||||
"**/opencode.json": "jsonc"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@furtherverse/demo-app",
|
||||
"name": "@furtherverse/demo-server",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 974 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 903 B After Width: | Height: | Size: 903 B |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
27
apps/demo-server/turbo.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"$schema": "../../node_modules/turbo/schema.json",
|
||||
"extends": ["//"],
|
||||
"tasks": {
|
||||
"build:compile": {
|
||||
"dependsOn": ["build:vite"],
|
||||
"outputs": ["out/**", "src-tauri/binaries/**"]
|
||||
},
|
||||
"build:tauri": {
|
||||
"dependsOn": ["build:compile"],
|
||||
"outputs": ["src-tauri/target/release/bundle/**"]
|
||||
},
|
||||
"build:vite": {
|
||||
"outputs": [".output/**"]
|
||||
},
|
||||
"dev:tauri": {
|
||||
"cache": false,
|
||||
"dependsOn": ["build:compile"],
|
||||
"persistent": true,
|
||||
"with": ["dev:vite"]
|
||||
},
|
||||
"dev:vite": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
||||
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"
|
||||
|
||||