feat: electron desktop app without express server (#1136)
* feat: add electron app
* refactor: using different approach
* chore: update commit hash to 02621e3545
* fix: working dev but prod showing not found and lint fix
* fix: add icon
* fix: resolve server file load issue
* fix: eslint and prettier wip
* fix: only load server build once
* fix: forward request for other ports
* fix: use cloudflare {} to avoid crash
* fix: no need for appLogger
* fix: forward cookie
* fix: update script and update preload loading path
* chore: minor update for appId
* fix: store and load all cookies
* refactor: split main/index.ts
* refactor: group electron main files into two folders
* fix: update electron build configs
* fix: update auto update feat
* fix: vite-plugin-node-polyfills need to be in dependencies for dmg version to work
* ci: trigger build for electron branch
* ci: mark draft if it's from branch commit
* ci: add icons for windows and linux
* fix: update icons for windows
* fix: add author in package.json
* ci: use softprops/action-gh-release@v2
* fix: use path to join
* refactor: refactor path logic for working in both mac and windows
* fix: still need vite-plugin-node-polyfills dependencies
* fix: update vite-electron.config.ts
* ci: sign mac app
* refactor: assets folder
* ci: notarization
* ci: add NODE_OPTIONS
* ci: window only nsis dist
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
65
electron-builder.yml
Normal file
65
electron-builder.yml
Normal file
@@ -0,0 +1,65 @@
|
||||
appId: com.stackblitz.bolt.diy
|
||||
productName: Bolt Local
|
||||
directories:
|
||||
buildResources: build
|
||||
output: dist
|
||||
files:
|
||||
- build/**/*
|
||||
- package.json
|
||||
- node_modules/**/*
|
||||
- icons/**
|
||||
- electron-update.yml
|
||||
extraMetadata:
|
||||
main: build/electron/main/index.mjs
|
||||
asarUnpack:
|
||||
- resources/**
|
||||
- build/client/**/*
|
||||
- build/server/**/*
|
||||
- electron-update.yml
|
||||
|
||||
mac:
|
||||
icon: assets/icons/icon.icns
|
||||
target:
|
||||
- dmg
|
||||
identity: "Xinzhe Wang (RDQSC33B2X)"
|
||||
category: "public.app-category.developer-tools"
|
||||
type: "distribution"
|
||||
hardenedRuntime: true
|
||||
entitlements: "assets/entitlements.mac.plist"
|
||||
entitlementsInherit: "assets/entitlements.mac.plist"
|
||||
gatekeeperAssess: false
|
||||
|
||||
win:
|
||||
icon: assets/icons/icon.ico
|
||||
target:
|
||||
- nsis
|
||||
signDlls: false
|
||||
artifactName: ${name}-${version}-${os}-${arch}.${ext}
|
||||
|
||||
linux:
|
||||
icon: assets/icons/icon.png
|
||||
target:
|
||||
- AppImage
|
||||
- deb
|
||||
artifactName: ${name}-${version}-${os}-${arch}.${ext}
|
||||
category: Development
|
||||
|
||||
nsis:
|
||||
oneClick: false
|
||||
allowToChangeInstallationDirectory: true
|
||||
createDesktopShortcut: true
|
||||
createStartMenuShortcut: true
|
||||
shortcutName: ${productName}
|
||||
artifactName: ${name}-${version}-${os}-${arch}-setup.${ext}
|
||||
|
||||
npmRebuild: false
|
||||
|
||||
publish:
|
||||
provider: github
|
||||
owner: Derek-X-Wang
|
||||
repo: bolt.local
|
||||
private: true
|
||||
releaseType: release
|
||||
|
||||
electronDownload:
|
||||
mirror: https://npmmirror.com/mirrors/electron/
|
||||
Reference in New Issue
Block a user