Skip to content

Commit 6b215b0

Browse files
authored
chore: remove install command (electron#2958)
1 parent a87bb80 commit 6b215b0

27 files changed

+1
-818
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"bolt": {
1010
"workspaces": [
1111
"packages/api/*",
12-
"packages/installer/*",
1312
"packages/maker/*",
1413
"packages/publisher/*",
1514
"packages/utils/*",
@@ -70,7 +69,6 @@
7069
"mime-types": "^2.1.25",
7170
"node-fetch": "^2.6.7",
7271
"nugget": "^2.0.1",
73-
"open": "^8.1.0",
7472
"ora": "^5.0.0",
7573
"parse-author": "^2.0.0",
7674
"pretty-ms": "^7.0.0",

packages/api/cli/src/electron-forge-install.ts

Lines changed: 0 additions & 45 deletions
This file was deleted.

packages/api/core/package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@
3838
},
3939
"dependencies": {
4040
"@electron-forge/async-ora": "6.0.0-beta.67",
41-
"@electron-forge/installer-base": "6.0.0-beta.67",
42-
"@electron-forge/installer-deb": "6.0.0-beta.67",
43-
"@electron-forge/installer-dmg": "6.0.0-beta.67",
44-
"@electron-forge/installer-exe": "6.0.0-beta.67",
45-
"@electron-forge/installer-rpm": "6.0.0-beta.67",
46-
"@electron-forge/installer-zip": "6.0.0-beta.67",
4741
"@electron-forge/maker-base": "6.0.0-beta.67",
4842
"@electron-forge/plugin-base": "6.0.0-beta.67",
4943
"@electron-forge/publisher-base": "6.0.0-beta.67",

packages/api/core/src/api/index.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { ElectronProcess, ForgeMakeResult } from '@electron-forge/shared-types';
22

33
import _import, { ImportOptions } from './import';
44
import init, { InitOptions } from './init';
5-
import install, { InstallOptions, Asset as InstallAsset } from './install';
65
import lint, { LintOptions } from './lint';
76
import make, { MakeOptions } from './make';
87
import _package, { PackageOptions } from './package';
@@ -29,15 +28,6 @@ export class ForgeAPI {
2928
return init(opts);
3029
}
3130

32-
/**
33-
* Install an Electron application from GitHub.
34-
*
35-
* Works on all three platforms for all major distributable types.
36-
*/
37-
install(opts: InstallOptions): Promise<void> {
38-
return install(opts);
39-
}
40-
4131
/**
4232
* Lint a local Electron application.
4333
*
@@ -88,8 +78,6 @@ export {
8878
ForgeUtils,
8979
ImportOptions,
9080
InitOptions,
91-
InstallAsset,
92-
InstallOptions,
9381
LintOptions,
9482
MakeOptions,
9583
PackageOptions,

packages/api/core/src/api/install.ts

Lines changed: 0 additions & 177 deletions
This file was deleted.

0 commit comments

Comments
 (0)