File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export default abstract class Maker<C> implements IForgeMaker {
46
46
47
47
public requiredExternalBinaries : string [ ] = [ ] ;
48
48
49
+ /** @internal */
49
50
__isElectronForgeMaker ! : true ;
50
51
51
52
constructor ( private configFetcher : C | ( ( arch : ForgeArch ) => C ) = { } as C , protected providedPlatforms ?: ForgePlatform [ ] ) {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export { StartOptions };
5
5
export default abstract class Plugin < C > implements IForgePlugin {
6
6
public abstract name : string ;
7
7
8
+ /** @internal */
8
9
__isElectronForgePlugin ! : true ;
9
10
10
11
constructor ( public config : C ) {
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export default abstract class Publisher<C> implements IForgePublisher {
22
22
23
23
public defaultPlatforms ?: ForgePlatform [ ] ;
24
24
25
+ /** @internal */
25
26
__isElectronForgePublisher ! : true ;
26
27
27
28
constructor ( public config : C , protected providedPlatforms ?: ForgePlatform [ ] ) {
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ export interface ForgeMakeResult {
60
60
}
61
61
62
62
export interface IForgePlugin {
63
+ /** @internal */
63
64
__isElectronForgePlugin : boolean ;
64
65
name : string ;
65
66
@@ -76,6 +77,7 @@ export interface IForgeResolvableMaker {
76
77
}
77
78
78
79
export interface IForgeMaker {
80
+ /** @internal */
79
81
__isElectronForgeMaker : boolean ;
80
82
readonly platforms ?: ForgePlatform [ ] ;
81
83
}
@@ -87,6 +89,7 @@ export interface IForgeResolvablePublisher {
87
89
}
88
90
89
91
export interface IForgePublisher {
92
+ /** @internal */
90
93
__isElectronForgePublisher : boolean ;
91
94
readonly platforms ?: ForgePlatform [ ] ;
92
95
}
Original file line number Diff line number Diff line change @@ -10,10 +10,13 @@ import * as typedoc from 'typedoc';
10
10
entryPointStrategy : 'packages' ,
11
11
entryPoints : packages . map ( ( pkg ) => pkg . path ) ,
12
12
excludeExternals : true ,
13
+ excludeInternal : true ,
13
14
excludePrivate : true ,
14
15
excludeProtected : true ,
15
- hideGenerator : true ,
16
16
externalPattern : [ '**/node_modules/@types/node/**' ] ,
17
+ hideGenerator : true ,
18
+ includeVersion : true ,
19
+ name : 'Electron Forge' ,
17
20
plugin : [ 'typedoc-plugin-rename-defaults' , 'typedoc-plugin-missing-exports' ] ,
18
21
} ) ;
19
22
You can’t perform that action at this time.
0 commit comments