Updated build steps & fixed one last bug
This commit is contained in:
parent
126f397d97
commit
2c2212b523
3 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
"build": {
|
||||
"beforeDevCommand": "cd ../web && bun run dev && cd ../tauri",
|
||||
"devUrl": "http://localhost:3000",
|
||||
"beforeBuildCommand": "cd ../web && bun run build && cd ../tauri",
|
||||
"beforeBuildCommand": "cd ../.. && bun run build:web && cd apps/tauri",
|
||||
"frontendDist": "../../web/dist"
|
||||
},
|
||||
"app": {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"build:all": "bun run build:packages && bun run build:web && bun run build:mobile && bun run build:desktop",
|
||||
"build:packages": "bun scripts/build-packages.ts",
|
||||
"dev:web": "cd apps/web && bun dev",
|
||||
"build:web": "cd apps/web && bun run build",
|
||||
"build:web": "bun run build:packages && cd apps/web && bun run build",
|
||||
"preview:web": "cd apps/web && bun run preview",
|
||||
"dev:mobile": "cd apps/tauri && bun dev:mobile",
|
||||
"build:mobile": "cd apps/tauri && bun run build:mobile",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { BoundSendFn } from "@tensamin/ttp/core";
|
||||
import type { BoundSendFn } from "@tensamin/ttp";
|
||||
import type { TTP } from "@tensamin/shared/data";
|
||||
import type { RawMessages } from "../values";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue