chore
3
.vscode/settings.json
vendored
@@ -37,7 +37,8 @@
|
|||||||
"files.associations": {
|
"files.associations": {
|
||||||
".env": "dotenv",
|
".env": "dotenv",
|
||||||
".env.*": "dotenv",
|
".env.*": "dotenv",
|
||||||
"**/tsconfig*.json": "jsonc",
|
"**/tsconfig.json": "jsonc",
|
||||||
|
"**/tsconfig.*.json": "jsonc",
|
||||||
"**/biome.json": "jsonc",
|
"**/biome.json": "jsonc",
|
||||||
"**/opencode.json": "jsonc"
|
"**/opencode.json": "jsonc"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@furtherverse/demo-app",
|
"name": "@furtherverse/demo-server",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"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",
|
"$schema": "./node_modules/turbo/schema.json",
|
||||||
"dangerouslyDisablePackageManagerCheck": true,
|
"dangerouslyDisablePackageManagerCheck": true,
|
||||||
|
"globalDependencies": [
|
||||||
|
"package.json",
|
||||||
|
"bun.lock",
|
||||||
|
"turbo.json",
|
||||||
|
"biome.json"
|
||||||
|
],
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"build:compile": {
|
"build": {
|
||||||
"dependsOn": ["build:vite"],
|
"outputs": ["dist/**", ".output/**"]
|
||||||
"outputs": ["out/**", "src-tauri/binaries/**"]
|
|
||||||
},
|
},
|
||||||
"build:tauri": {
|
"compile": {
|
||||||
"dependsOn": ["build:compile"],
|
"dependsOn": ["build"],
|
||||||
"outputs": ["src-tauri/target/release/bundle/**"]
|
"outputs": ["out/**"]
|
||||||
},
|
|
||||||
"build:vite": {
|
|
||||||
"outputs": [".output/**"]
|
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"cache": false,
|
"cache": false,
|
||||||
"persistent": true
|
"persistent": true
|
||||||
},
|
},
|
||||||
"dev:tauri": {
|
"fix": {
|
||||||
"cache": false,
|
"outputs": []
|
||||||
"dependsOn": ["build:compile"],
|
|
||||||
"persistent": true,
|
|
||||||
"with": ["dev:vite"]
|
|
||||||
},
|
},
|
||||||
"dev:vite": {
|
"typecheck": {
|
||||||
"cache": false,
|
"dependsOn": ["^typecheck"],
|
||||||
"persistent": true
|
"inputs": ["tsconfig.json", "tsconfig.*.json", "**/*.{ts,tsx}"],
|
||||||
|
"outputs": []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ui": "tui"
|
"ui": "tui"
|
||||||
|
|||||||