File tree 4 files changed +5
-5
lines changed
packages/angular/cli/src/commands/cache
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class CacheCleanModule extends CommandModule implements CommandModuleImpl
19
19
command = 'clean' ;
20
20
describe = 'Deletes persistent disk cache from disk.' ;
21
21
longDescriptionPath : string | undefined ;
22
- static override scope : CommandScope . In ;
22
+ static override scope = CommandScope . In ;
23
23
24
24
builder ( localYargs : Argv ) : Argv {
25
25
return localYargs . strict ( ) ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class CacheCommandModule extends CommandModule implements CommandModuleIm
26
26
command = 'cache' ;
27
27
describe = 'Configure persistent disk cache and retrieve cache statistics.' ;
28
28
longDescriptionPath = join ( __dirname , 'long-description.md' ) ;
29
- static override scope : CommandScope . In ;
29
+ static override scope = CommandScope . In ;
30
30
31
31
builder ( localYargs : Argv ) : Argv {
32
32
const subcommands = [
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export class CacheInfoCommandModule extends CommandModule implements CommandModu
22
22
command = 'info' ;
23
23
describe = 'Prints persistent disk cache configuration and statistics in the console.' ;
24
24
longDescriptionPath ?: string | undefined ;
25
- static override scope : CommandScope . In ;
25
+ static override scope = CommandScope . In ;
26
26
27
27
builder ( localYargs : Argv ) : Argv {
28
28
return localYargs . strict ( ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class CacheDisableModule extends CommandModule implements CommandModuleIm
19
19
aliases = 'off' ;
20
20
describe = 'Disables persistent disk cache for all projects in the workspace.' ;
21
21
longDescriptionPath : string | undefined ;
22
- static override scope : CommandScope . In ;
22
+ static override scope = CommandScope . In ;
23
23
24
24
builder ( localYargs : Argv ) : Argv {
25
25
return localYargs ;
@@ -35,7 +35,7 @@ export class CacheEnableModule extends CommandModule implements CommandModuleImp
35
35
aliases = 'on' ;
36
36
describe = 'Enables disk cache for all projects in the workspace.' ;
37
37
longDescriptionPath : string | undefined ;
38
- static override scope : CommandScope . In ;
38
+ static override scope = CommandScope . In ;
39
39
40
40
builder ( localYargs : Argv ) : Argv {
41
41
return localYargs ;
You can’t perform that action at this time.
0 commit comments