-
-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7eb681f
commit da2f520
Showing
74 changed files
with
1,521 additions
and
1,294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.DS_Store | ||
node_modules | ||
out | ||
.webpack | ||
.env | ||
.idea | ||
.idea | ||
.vite |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// @ts-check | ||
|
||
import { MakerZIP } from '@electron-forge/maker-zip' | ||
import { VitePlugin } from '@electron-forge/plugin-vite' | ||
|
||
/** @type {import('@electron-forge/shared-types').ForgeConfig} */ | ||
const config = { | ||
makers: [new MakerZIP({}, ['darwin'])], | ||
packagerConfig: { | ||
appBundleId: 'com.browserosaurus', | ||
appCategoryType: 'public.app-category.developer-tools', | ||
asar: false, | ||
extendInfo: 'plist/Info.plist', | ||
icon: 'src/shared/static/icon/icon.icns', | ||
osxNotarize: process.env.CI | ||
? undefined | ||
: { | ||
keychain: '~/Library/Keychains/login.keychain-db', | ||
keychainProfile: 'AC_PASSWORD', | ||
}, | ||
osxSign: process.env.CI | ||
? undefined | ||
: { | ||
optionsForFile: () => ({ | ||
'entitlements': 'plist/entitlements.mac.plist', | ||
'hardened-runtime': true, | ||
}), | ||
}, | ||
protocols: [ | ||
{ | ||
name: 'HTTP link', | ||
schemes: ['http', 'https'], | ||
}, | ||
{ | ||
name: 'File', | ||
schemes: ['file'], | ||
}, | ||
], | ||
}, | ||
plugins: [ | ||
new VitePlugin({ | ||
build: [ | ||
{ | ||
config: 'vite.main.config.ts', | ||
entry: 'src/main/main.ts', | ||
}, | ||
{ | ||
config: 'vite.preload.config.ts', | ||
entry: 'src/renderers/shared/preload.ts', | ||
}, | ||
], | ||
renderer: [ | ||
{ | ||
config: 'vite.renderer.prefs.config.ts', | ||
name: 'prefs_window', | ||
}, | ||
{ | ||
config: 'vite.renderer.picker.config.ts', | ||
name: 'picker_window', | ||
}, | ||
], | ||
}), | ||
], | ||
} | ||
|
||
export default config |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.