Skip to content

Commit bb10fd3

Browse files
🔧 chore: add macOS-specific build script to package.json
- Introduced a new script `build:mac` in `package.json`. This script specifically targets building the application for macOS, streamlining the development process for macOS environments. - The addition of this script allows for more efficient and focused builds when only a macOS version is needed, saving time and resources during the development cycle.
1 parent 6e1195f commit bb10fd3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"scripts": {
88
"dev": "NODE_ENV=development vite",
99
"build": "tsc && vite build && electron-builder -mwl",
10+
"build:mac": "tsc && vite build && electron-builder -m",
1011
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
1112
"preview": "vite preview"
1213
},

0 commit comments

Comments
 (0)