chore(codebase): cleanup

This commit is contained in:
Ivan
2026-04-19 14:53:14 -05:00
parent 59a93c87e6
commit bd09155ba7
6 changed files with 5 additions and 6 deletions
+4 -4
View File
@@ -382,21 +382,21 @@ tasks:
deps: [build:fe]
cmds:
- "PLATFORM=linux {{.NPM}} run build-backend"
- "npx electron-builder -c package-legacy.json --linux AppImage --publish=never"
- "npx electron-builder -c electron/package-legacy.json --linux AppImage --publish=never"
dist:legacy:win:
desc: Build Windows EXE (Legacy Electron)
deps: [build:fe]
cmds:
- "PLATFORM=win32 {{.NPM}} run build-backend"
- "npx electron-builder -c package-legacy.json --win portable --publish=never"
- "npx electron-builder -c electron/package-legacy.json --win portable --publish=never"
dist:legacy:win:wine:
desc: Build Windows EXE via Wine (Legacy Electron)
deps: [build:fe]
cmds:
- "PLATFORM=win32 PYTHON_CMD='{{.WINE_PYTHON}}' {{.NPM}} run build-backend"
- "npx electron-builder -c package-legacy.json --win portable nsis --publish=never"
- "npx electron-builder -c electron/package-legacy.json --win portable nsis --publish=never"
dist:legacy:all:
desc: Build all Legacy apps
@@ -404,7 +404,7 @@ tasks:
cmds:
- "PLATFORM=linux {{.NPM}} run build-backend"
- "PLATFORM=win32 {{.NPM}} run build-backend"
- "npx electron-builder -c package-legacy.json --linux AppImage deb --win portable nsis --publish=never"
- "npx electron-builder -c electron/package-legacy.json --linux AppImage deb --win portable nsis --publish=never"
# --- Docker ---