File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ export class CommandsService implements ICommandsService {
28
28
private $helpService : IHelpService ,
29
29
private $extensibilityService : IExtensibilityService ,
30
30
private $optionsTracker : IOptionsTracker ,
31
- private $projectDataService : IProjectDataService ) {
31
+ private $projectDataService : IProjectDataService ,
32
+ private $bundleValidatorHelper : IBundleValidatorHelper ) {
32
33
}
33
34
34
35
public allCommands ( opts : { includeDevCommands : boolean } ) : string [ ] {
@@ -115,6 +116,8 @@ export class CommandsService implements ICommandsService {
115
116
116
117
const dashedOptions = command ? command . dashedOptions : null ;
117
118
this . $options . validateOptions ( dashedOptions , projectData ) ;
119
+
120
+ this . $bundleValidatorHelper . validate ( projectData , "1.0.0" ) ;
118
121
}
119
122
120
123
return this . canExecuteCommand ( commandName , commandArguments ) ;
You can’t perform that action at this time.
0 commit comments