Skip to content

Commit b45e87f

Browse files
Removed ng init as it is no longer supported by angular-cli resolves #2
1 parent 1b656f6 commit b45e87f

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
],
1313
"activationEvents": [
1414
"onCommand:extension.ngNew",
15-
"onCommand:extension.ngInit",
1615
"onCommand:extension.ngDoc",
1716
"onCommand:extension.ngLint",
1817
"onCommand:extension.ngServe",
@@ -39,10 +38,6 @@
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"

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as vscode from 'vscode';
44

55
import { runNgCommand } from './ng/run';
66
import { ngnew } from './ng/new';
7-
import { nginit } from './ng/init';
87
import { ngversion } from './ng/version';
98
import { ngserve } from './ng/serve';
109
import { ngdoc } from './ng/doc';
@@ -32,7 +31,6 @@ export function activate(context: vscode.ExtensionContext) {
3231
function 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);

src/ng/init.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)