Skip to content

Commit

Permalink
Fix web build
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Dec 18, 2023
1 parent c45cfe7 commit 6963d78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion interface/stores/hardwareInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const defaultHardwareInfo: HardwareInfo = {
throughputRead: 100,
throughputWrite: 100,
dataRead: 100,
dataWrite: 100,
dataWritten: 100,
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"dev": "node scripts/buildNumber.cjs alpha true && cross-env VITE_CORES_MODE=app vite interface --port 3000",
"dev:web": "node scripts/buildNumber.cjs alpha true && cross-env VITE_CORES_MODE=client vite interface --port 3001",
"build:interface": "node scripts/buildNumber.cjs alpha false && cross-env VITE_CORES_MODE=app vite build interface",
"build:interface": "node scripts/buildNumber.cjs alpha false && npm run build:wasm && cross-env VITE_CORES_MODE=app vite build interface",
"build:library": "cargo build --manifest-path crates/library/Cargo.toml --release && node scripts/copyLib.js",
"build:wasm": "npx wasm-pack build crates/client --target web --release",
"check": "svelte-check && tsc --noEmit"
Expand Down

0 comments on commit 6963d78

Please sign in to comment.