chore: add command to build universal dmg package for mac (#94)

* chore: add command to  build universal dmg package for mac

* chore: lowercase
This commit is contained in:
Medcl
2025-01-08 20:26:48 +08:00
committed by GitHub
parent 6e39e25d72
commit 840ee3cc57

View File

@@ -36,6 +36,11 @@ build-mac-dmg:
@echo "Building the desktop dmg package..."
pnpm tauri build --bundles dmg
# Build universal DMG package for MacOS
build-mac-universal-dmg:
@echo "Building the desktop dmg package..."
pnpm tauri build --target universal-apple-darwin --bundles dmg
# Combined: Install dependencies, start dev, and build app
dev-build: install-dependencies start-dev build-app
@echo "Development and build process completed."