Skip to content

Commit

Permalink
fix(initializer): pin electron-compilers dependency due to typescript…
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Jan 9, 2017
1 parent 4f06b5f commit 41f05f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/init/init-npm.js
Expand Up @@ -9,7 +9,8 @@ import asyncOra from '../util/ora-handler';

const d = debug('electron-forge:init:npm');

export const deps = ['electron-compile'];
// FIXME remove electron-compilers entry when >= 5.3.0 is fixed
export const deps = ['electron-compile', 'electron-compilers@5.2.5'];
export const devDeps = ['babel-preset-env', 'babel-preset-react', 'babel-plugin-transform-async-to-generator'];
export const exactDevDeps = ['electron-prebuilt-compile'];
export const standardDeps = ['standard'];
Expand Down

1 comment on commit 41f05f9

@anaisbetts
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fixed in electron-compilers@5.3.2

Please sign in to comment.