Skip to content

Commit

Permalink
fix(core): make packagerConfig and rebuildConfig partial (all things …
Browse files Browse the repository at this point in the history
…optional)
  • Loading branch information
MarshallOfSound committed May 17, 2018
1 parent d0eacbc commit d499d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/utils/types/src/index.ts
Expand Up @@ -31,8 +31,8 @@ import { RebuildOptions } from 'electron-rebuild/lib/src/rebuild';
* An array of forge plugins or a tuple consisting of [pluginName, pluginOptions]
*/
plugins: (IForgePlugin | [string, any])[];
electronRebuildConfig: RebuildOptions;
packagerConfig: Options;
electronRebuildConfig: Partial<RebuildOptions>;
packagerConfig: Partial<Options>;
makers: (IForgeResolvableMaker | IForgeMaker)[];
publishers: (IForgeResolvablePublisher | IForgePublisher | string)[];
}
Expand Down

0 comments on commit d499d65

Please sign in to comment.