Skip to content

Commit be8df10

Browse files
fix build script names
1 parent dddb8dd commit be8df10

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"build": "npm run wasm:build-production && vite build",
1515
"build-dev": "npm run wasm:build-dev && vite build",
1616
"build-profiling": "npm run wasm:build-profiling && vite build",
17-
"build-desktop": "npm run desktop:build-production && vite build --mode desktop && vite build --mode icons",
18-
"build-desktop-placeholder-icons": "npm run desktop:build-production && vite build --mode desktop && vite build --mode icons-placeholder",
17+
"build-desktop": "npm run native:build-production && vite build --mode desktop && vite build --mode icons",
18+
"build-desktop-placeholder-icons": "npm run native:build-production && vite build --mode desktop && vite build --mode icons-placeholder",
1919
"build-desktop-icons": "vite build --mode icons",
20-
"build-desktop-dev": "npm run desktop:build-dev && vite build",
20+
"build-desktop-dev": "npm run native:build-dev && vite build",
2121
"---------- UTILITIES ----------": "",
2222
"lint": "eslint . && tsc --noEmit",
2323
"lint-fix": "eslint . --fix && tsc --noEmit",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"scripts": {
55
"---------- DEV SERVER ----------": "",
66
"start": "cd frontend && npm start",
7-
"start-desktop": "cd frontend && npm run build-native-dev && cargo run -p graphite-desktop-bundle -- open",
7+
"start-desktop": "cd frontend && npm run build-desktop-dev && cargo run -p graphite-desktop-bundle -- open",
88
"profiling": "cd frontend && npm run profiling",
99
"production": "cd frontend && npm run production",
1010
"---------- BUILDS ----------": "",
1111
"build-dev": "cd frontend && npm run build-dev",
1212
"build-profiling": "cd frontend && npm run build-profiling",
1313
"build": "cd frontend && npm run build",
14-
"build-desktop": "cd frontend && npm run build-native && cargo run -r -p graphite-desktop-bundle",
15-
"build-desktop-dev": "cd frontend && npm run build-native-dev && cargo run -p graphite-desktop-bundle",
14+
"build-desktop": "cd frontend && npm run build-desktop && cargo run -r -p graphite-desktop-bundle",
15+
"build-desktop-dev": "cd frontend && npm run build-desktop-dev && cargo run -p graphite-desktop-bundle",
1616
"---------- UTILITIES ----------": "",
1717
"lint": "cd frontend && npm run lint",
1818
"lint-fix": "cd frontend && npm run lint-fix"

0 commit comments

Comments
 (0)