Skip to content

Commit

Permalink
build(deps-dev): upgrade typescript to 3.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed May 22, 2020
1 parent 738720d commit 6f85bd4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/api/core/src/util/forge-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,15 @@ export default async (dir: string) => {
} else if (typeof forgeConfig !== 'object') {
throw new Error('Expected packageJSON.config.forge to be an object or point to a requirable JS file');
}
forgeConfig = {
const defaultForgeConfig = {
electronRebuildConfig: {},
packagerConfig: {},
makers: [],
publishers: [],
plugins: [],
};
forgeConfig = {
...defaultForgeConfig,
...forgeConfig,
};

Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9212,9 +9212,9 @@ typedoc@^0.17.6:
typedoc-default-themes "^0.10.1"

typescript@^3.8.3:
version "3.8.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
version "3.9.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.3.tgz#d3ac8883a97c26139e42df5e93eeece33d610b8a"
integrity sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==

uglify-js@^3.1.4:
version "3.9.3"
Expand Down

0 comments on commit 6f85bd4

Please sign in to comment.