Skip to content

Commit

Permalink
chore: Update package.json to add @electron-forge/maker-dmg dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sametcn99 committed May 15, 2024
1 parent 17299b6 commit a35b358
Show file tree
Hide file tree
Showing 3 changed files with 336 additions and 21 deletions.
5 changes: 4 additions & 1 deletion forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { MakerRpm } from "@electron-forge/maker-rpm";
import { VitePlugin } from "@electron-forge/plugin-vite";
import { FusesPlugin } from "@electron-forge/plugin-fuses";
import { FuseV1Options, FuseVersion } from "@electron/fuses";
import { MakerDMG } from "@electron-forge/maker-dmg";

const config: ForgeConfig = {
publishers: [
Expand All @@ -32,9 +33,11 @@ const config: ForgeConfig = {
rebuildConfig: {},
makers: [
new MakerSquirrel({}),
new MakerZIP({}, ["darwin"]),
new MakerZIP({}),
new MakerRpm({}),
new MakerDeb({}),
new MakerRpm({}),
new MakerDMG({}),
],
plugins: [
new VitePlugin({
Expand Down
Loading

0 comments on commit a35b358

Please sign in to comment.