File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 11import type { ForgeConfig } from "@electron-forge/shared-types"
22import { MakerSquirrel } from "@electron-forge/maker-squirrel"
33import { MakerZIP } from "@electron-forge/maker-zip"
4- import { MakerDeb } from "@electron-forge/maker-deb"
5- import { MakerRpm } from "@electron-forge/maker-rpm"
64import { VitePlugin } from "@electron-forge/plugin-vite"
75import { FusesPlugin } from "@electron-forge/plugin-fuses"
86import { FuseV1Options , FuseVersion } from "@electron/fuses"
@@ -20,9 +18,7 @@ const config: ForgeConfig = {
2018 new MakerSquirrel ( {
2119 setupIcon : path . resolve ( __dirname , "src/assets/icons/synthesis-logo.ico" ) ,
2220 } ) ,
23- new MakerZIP ( { } , [ "darwin" ] ) ,
24- new MakerRpm ( { } ) ,
25- new MakerDeb ( { } ) ,
21+ new MakerZIP ( { } , [ "darwin" , "linux" ] ) ,
2622 ] ,
2723 plugins : [
2824 new VitePlugin ( {
You can’t perform that action at this time.
0 commit comments