File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
packages/@angular/cli/commands Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default class E2eCommand extends ArchitectCommand {
13
13
public readonly description = 'Run e2e tests in existing project.' ;
14
14
public static aliases : string [ ] = [ 'e' ] ;
15
15
public readonly scope = CommandScope . inProject ;
16
- public readonly multiTarget : true ;
16
+ public readonly multiTarget = true ;
17
17
public readonly options : Option [ ] = [
18
18
this . prodOption ,
19
19
this . configurationOption
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default class EjectCommand extends Command {
9
9
public readonly arguments : string [ ] = [ ] ;
10
10
public readonly options : Option [ ] = [ ] ;
11
11
12
- run ( _options : any ) {
12
+ run ( ) {
13
13
this . logger . info ( tags . stripIndents `
14
14
The 'eject' command has been temporarily disabled, as it is not yet compatible with the new
15
15
angular.json format. The new configuration format provides further flexibility to modify the
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default class LintCommand extends ArchitectCommand {
12
12
public readonly description = 'Lints code in existing project.' ;
13
13
public static aliases = [ 'l' ] ;
14
14
public readonly scope = CommandScope . inProject ;
15
- public readonly multiTarget : true ;
15
+ public readonly multiTarget = true ;
16
16
public readonly options : Option [ ] = [
17
17
this . configurationOption
18
18
] ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default class TestCommand extends ArchitectCommand {
13
13
public readonly description = 'Run unit tests in existing project.' ;
14
14
public static aliases = [ 't' ] ;
15
15
public readonly scope = CommandScope . inProject ;
16
- public readonly multiTarget : true ;
16
+ public readonly multiTarget = true ;
17
17
public readonly options : Option [ ] = [
18
18
this . prodOption ,
19
19
this . configurationOption
You can’t perform that action at this time.
0 commit comments