Cleaned up the scaffold's electron-builder.yml: correct appId
(com.aurora-dockside.app, matching setAppUserModelId) and productName
("Aurora Dockside"), removed the camera/microphone/Documents/Downloads
Info.plist usage descriptions (boilerplate defaults irrelevant to this
app — it's not sandboxed and doesn't touch camera/mic), removed the
placeholder auto-update publish config pointing at example.com (no
signing infra for that yet, matches the plan's decision to defer
auto-update), and dropped the Linux snap target (snapcraft tooling not
part of this pass) to keep AppImage + deb.
Verified for real rather than just reading the config: ran
`pnpm build:unpack`, which typechecks, builds main/preload/renderer
for production, and packages an actual unsigned "Aurora Dockside.app"
via electron-builder (code signing correctly skipped — no Developer ID
cert on this machine, expected for a local dev build). Launched the
packaged binary directly (not `pnpm dev`) with remote debugging and
called window.api.projects.list() over CDP — it returned real project
data, confirming the PATH fallback added back in step 2 (for Homebrew
ddev not being on PATH for GUI-launched apps) actually holds up
outside a dev-mode terminal context, which is the scenario it exists
for.
This completes all 9 steps of the build plan: scaffold, tooling, core
project management, terminal/status bar, database tools, add-on
management, log viewer, project creation wizard, settings/polish, and
now packaging.
34 lines
877 B
YAML
34 lines
877 B
YAML
appId: com.aurora-dockside.app
|
|
productName: Aurora Dockside
|
|
directories:
|
|
buildResources: build
|
|
files:
|
|
- '!**/.vscode/*'
|
|
- '!src/*'
|
|
- '!electron.vite.config.{js,ts,mjs,cjs}'
|
|
- '!{.eslintcache,eslint.config.mjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
|
|
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
|
|
- '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
|
|
asarUnpack:
|
|
- resources/**
|
|
win:
|
|
executableName: aurora-dockside
|
|
nsis:
|
|
artifactName: ${name}-${version}-setup.${ext}
|
|
shortcutName: ${productName}
|
|
uninstallDisplayName: ${productName}
|
|
createDesktopShortcut: always
|
|
mac:
|
|
entitlementsInherit: build/entitlements.mac.plist
|
|
notarize: false
|
|
dmg:
|
|
artifactName: ${name}-${version}.${ext}
|
|
linux:
|
|
target:
|
|
- AppImage
|
|
- deb
|
|
category: Utility
|
|
appImage:
|
|
artifactName: ${name}-${version}.${ext}
|
|
npmRebuild: false
|