MCPcopy Create free account
hub / github.com/GCWing/BitFun / getInstallerBuildCommand

Function getInstallerBuildCommand

BitFun-Installer/scripts/build-installer.cjs:85–89  ·  view source on GitHub ↗
(mode, devMode)

Source from the content-addressed store, hash-verified

83}
84
85function getInstallerBuildCommand(mode, devMode) {
86 if (devMode) return "pnpm run tauri:dev";
87 if (mode === "fast") return "pnpm run tauri:build:exe:fast";
88 return "pnpm run tauri:build:exe";
89}
90
91function ensureCleanDir(dir) {
92 if (fs.existsSync(dir)) {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected