Skip to content

Commit

Permalink
Refactor forge.config.ts to remove commented out code and enable @ele…
Browse files Browse the repository at this point in the history
…ctron-forge/maker-squirrel
  • Loading branch information
Thavarshan committed Sep 5, 2024
1 parent 932c8da commit 7c2ffd0
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@ const config: ForgeConfig = {
},
rebuildConfig: {},
makers: [
// {
// name: '@electron-forge/maker-squirrel',
// platforms: ['win32'],
// config: (arch: string) => ({
// name: productName,
// authors: author.name,
// exe: `${productName}.exe`,
// iconUrl: 'https://raw.githubusercontent.com/stellar-comet/comet/main/src/assets/images/icons/icon.ico',
// loadingGif: 'src/assets/images/loading.gif',
// noMsi: true,
// setupExe: `${name}-${version}-${arch}-setup.exe`,
// setupIcon: path.resolve(iconDir, 'setup-icon.ico'),
// certificateFile: path.resolve(__dirname, 'tools/certs/dev-cert.pfx'),
// certificatePassword: process.env.CERT_PASSWORD,
// }),
// },
{
name: '@electron-forge/maker-squirrel',
platforms: ['win32'],
config: (arch: string) => ({
name: productName,
authors: author.name,
exe: `${productName}.exe`,
iconUrl: 'https://raw.githubusercontent.com/stellar-comet/comet/main/src/assets/images/icons/icon.ico',
loadingGif: 'src/assets/images/loading.gif',
noMsi: true,
setupExe: `${name}-${version}-${arch}-setup.exe`,
setupIcon: path.resolve(iconDir, 'setup-icon.ico'),
certificateFile: path.resolve(__dirname, 'tools/certs/dev-cert.pfx'),
certificatePassword: process.env.CERT_PASSWORD,
}),
},
{
name: '@electron-forge/maker-appx',
platforms: ['win32'],
Expand Down

0 comments on commit 7c2ffd0

Please sign in to comment.