Skip to content

Commit

Permalink
chore: update all deps for v6
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Nov 24, 2018
1 parent fb776e1 commit d0bdf61
Show file tree
Hide file tree
Showing 39 changed files with 946 additions and 3,242 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"test": "TS_NODE_FILES=true yarn run mocha './tools/test-globber.ts' --opts mocha.opts"
},
"dependencies": {
"@octokit/rest": "^15.2.6",
"@octokit/rest": "^16.0.1",
"aws-sdk": "^2.9.0",
"colors": "^1.2.0",
"commander": "^2.9.0",
"cross-spawn": "^6.0.4",
"cross-spawn-promise": "^0.10.1",
"cross-zip": "^2.1.5",
"debug": "^3.0.0",
"debug": "^4.1.0",
"electron-forge-template-angular2": "^1.0.3",
"electron-forge-template-react": "^1.0.2",
"electron-forge-template-react-typescript": "^1.0.3",
Expand All @@ -71,7 +71,7 @@
"ora": "^3.0.0",
"parse-author": "^2.0.0",
"pify": "^4.0.0",
"pretty-ms": "^3.2.0",
"pretty-ms": "^4.0.0",
"resolve-package": "^1.0.1",
"s3": "^4.4.0",
"semver": "^5.3.0",
Expand All @@ -86,14 +86,14 @@
"yarn-or-npm": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/cli": "7.1.5",
"@babel/core": "7.1.6",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-env": "7.1.6",
"@babel/preset-typescript": "7.1.0",
"@babel/register": "7.0.0",
"@types/chai": "4.1.6",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/cross-spawn": "^6.0.0",
"@types/debug": "0.0.31",
Expand All @@ -114,29 +114,29 @@
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.1.0",
"@types/node": "10.12.0",
"@types/node": "10.12.10",
"@types/node-fetch": "^2.1.2",
"@types/opn": "^5.1.0",
"@types/ora": "^1.3.4",
"@types/pify": "^3.0.1",
"@types/pretty-ms": "^3.2.0",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^5.5.0",
"@types/sinon": "5.0.5",
"@types/sinon": "5.0.7",
"@types/username": "^3.0.0",
"@types/webpack": "4.4.17",
"@types/webpack": "4.4.19",
"@types/webpack-dev-middleware": "^2.0.1",
"@types/webpack-hot-middleware": "^2.16.3",
"@types/webpack-merge": "^4.1.3",
"asar": "^0.14.0",
"babel-plugin-source-map-support": "^2.0.1",
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
"commitizen": "^2.8.6",
"commitizen": "^3.0.4",
"coveralls": "^3.0.0",
"cross-env": "^5.0.0",
"cz-customizable": "^5.0.0",
"fetch-mock": "^6.0.0",
"fetch-mock": "^7.2.5",
"generate-changelog": "^1.0.2",
"listr": "^0.14.1",
"minimist": "^1.2.0",
Expand All @@ -145,21 +145,21 @@
"nyc": "^13.0.1",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"ts-node": "^6.0.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typedoc": "0.13.0",
"typescript": "3.1.3"
"typescript": "3.1.6"
},
"optionalDependencies": {
"electron-installer-debian": "^1.0.0",
"electron-installer-dmg": "^2.0.0",
"electron-installer-flatpak": "^0.8.0",
"electron-installer-redhat": "^0.5.0",
"electron-installer-snap": "^3.0.0",
"electron-windows-store": "^0.12.0",
"electron-windows-store": "^2.1.0",
"electron-winstaller": "^2.5.0",
"electron-wix-msi": "^1.3.0"
"electron-wix-msi": "^2.1.1"
}
}
3 changes: 0 additions & 3 deletions packages/api/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"electron-forge-vscode-nix": "script/vscode.sh",
"electron-forge-vscode-win": "script/vscode.cmd"
},
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/api/core/src/util/hook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const runHook = async (forgeConfig: ForgeConfig, hookName: string, ...hoo
await forgeConfig.pluginInterface.triggerHook(hookName, hookArgs);
};

export const runMutatingHook = async <T>(forgeConfig: ForgeConfig, hookName: string, item: T): Promise<T> => {
export async function runMutatingHook<T>(forgeConfig: ForgeConfig, hookName: string, item: T): Promise<T> {
const hooks = forgeConfig.hooks;
if (hooks) {
d(`hook triggered: ${hookName}`);
Expand All @@ -28,4 +28,4 @@ export const runMutatingHook = async <T>(forgeConfig: ForgeConfig, hookName: str
}
}
return await forgeConfig.pluginInterface.triggerMutatingHook(hookName, item);
};
}
3 changes: 0 additions & 3 deletions packages/installer/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/Installer.js",
"typings": "dist/Installer.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/darwin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerDarwin.js",
"typings": "dist/InstallerDarwin.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/deb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerDeb.js",
"typings": "dist/InstallerDeb.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/dmg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerDMG.js",
"typings": "dist/InstallerDMG.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/exe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerExe.js",
"typings": "dist/InstallerExe.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/linux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerLinux.js",
"typings": "dist/InstallerLinux.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/rpm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerRpm.js",
"typings": "dist/InstallerRpm.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/installer/zip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/InstallerZip.js",
"typings": "dist/InstallerZip.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"mocha": "^5.0.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/appx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerAppX.js",
"typings": "dist/MakerAppX.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/Maker.js",
"typings": "dist/Maker.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/deb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerDeb.js",
"typings": "dist/MakerDeb.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/dmg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerDMG.js",
"typings": "dist/MakerDMG.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/flatpak/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerFlatpak.js",
"typings": "dist/MakerFlatpak.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerPKG.js",
"typings": "dist/MakerPKG.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/rpm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerRpm.js",
"typings": "dist/MakerRpm.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/snap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerSnap.js",
"typings": "dist/MakerSnap.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.0.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/squirrel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerSquirrel.js",
"typings": "dist/MakerSquirrel.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/wix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerWix.js",
"typings": "dist/MakerWix.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/maker/zip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/MakerZIP.js",
"typings": "dist/MakerZIP.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/plugin/auto-unpack-natives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/AutoUnpackNativesPlugin.js",
"typings": "dist/AutoUnpackNativesPlugin.d.ts",
"scripts": {
"test": "exit 0"
},
"engines": {
"node": ">= 6.0"
},
Expand Down
3 changes: 0 additions & 3 deletions packages/plugin/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/Plugin.js",
"typings": "dist/Plugin.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/plugin/compile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/CompilePlugin.js",
"typings": "dist/CompilePlugin.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/plugin/local-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/LocalElectronPlugin.js",
"typings": "dist/LocalElectronPlugin.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/plugin/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/WebpackPlugin.js",
"typings": "dist/WebpackPlugin.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {},
"engines": {
"node": ">= 6.0"
Expand Down
3 changes: 0 additions & 3 deletions packages/publisher/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/Publisher.js",
"typings": "dist/Publisher.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*_spec.ts test/**/**/*_spec.ts --opts ../../../mocha.opts"
},
"devDependencies": {
"@electron-forge/shared-types": "6.0.0-beta.30",
"chai": "4.2.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/publisher/electron-release-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"license": "MIT",
"main": "dist/PublisherERS.js",
"typings": "dist/PublisherERS.d.ts",
"scripts": {
"test": "exit 0"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^5.0.0"
Expand Down
Loading

0 comments on commit d0bdf61

Please sign in to comment.