Skip to content

Commit

Permalink
fix(core): init with required makers as well
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed May 17, 2018
1 parent a85ce4e commit 04ead91
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/api/core/src/api/init-scripts/init-npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ import readPackageJSON from '../../util/read-package-json';
const d = debug('electron-forge:init:npm');

export const deps = ['electron-squirrel-startup'];
export const devDeps = ['@electron-forge/cli'];
export const devDeps = [
'@electron-forge/cli',
'@electron-forge/maker-squirrel',
'@electron-forge/maker-zip',
'@electron-forge/maker-deb',
'@electron-forge/maker-rpm',
];
export const exactDevDeps = ['electron'];

export default async (dir: string) => {
Expand Down

0 comments on commit 04ead91

Please sign in to comment.