File tree Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ In Visual Studio Code
1818
1919### Supported commands (by now):  
2020*  ng new
21- *  ng init
2221*  ng doc
2322*  ng lint
2423*  ng serve
Original file line number Diff line number Diff line change 1212    ],
1313    "activationEvents" : [
1414        " onCommand:extension.ngNew"  ,
15-         " onCommand:extension.ngInit"  ,
1615        " onCommand:extension.ngDoc"  ,
1716        " onCommand:extension.ngLint"  ,
1817        " onCommand:extension.ngServe"  ,
3938                "command" : " extension.ngNew"  ,
4039                "title" : " ng new" 
4140            },
42-             {
43-                 "command" : " extension.ngInit"  ,
44-                 "title" : " ng init" 
45-             },
4641            {
4742                "command" : " extension.ngDoc"  ,
4843                "title" : " ng doc" 
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import * as vscode from 'vscode';
44
55import  {  runNgCommand  }  from  './ng/run' ; 
66import  {  ngnew  }  from  './ng/new' ; 
7- import  {  nginit  }  from  './ng/init' ; 
87import  {  ngversion  }  from  './ng/version' ; 
98import  {  ngserve  }  from  './ng/serve' ; 
109import  {  ngdoc  }  from  './ng/doc' ; 
@@ -32,7 +31,6 @@ export function activate(context: vscode.ExtensionContext) {
3231function  registerCommands ( context : vscode . ExtensionContext )  { 
3332
3433    context . subscriptions . push ( ngnew ) ; 
35-     context . subscriptions . push ( nginit ) ; 
3634    context . subscriptions . push ( ngversion ) ; 
3735    context . subscriptions . push ( ngserve ) ; 
3836    context . subscriptions . push ( ngdoc ) ; 
  Load Diff This file was deleted. 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments