Skip to content

Commit af1c0fa

Browse files
committed
chore(libs): completely removed current install/uninstall tasks
1 parent c1eb814 commit af1c0fa

File tree

10 files changed

+2
-1334
lines changed

10 files changed

+2
-1334
lines changed

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ The generated project has dependencies that require **Node 4 or greater**.
2828
* [Generating Components, Directives, Pipes and Services](#generating-other-scaffolds)
2929
* [Generating a Route](#generating-a-route)
3030
* [Creating a Build](#creating-a-build)
31-
* [Installing a 3rd Party Library](#installing-a-3rd-party-library)
3231
* [Running Unit Tests](#running-unit-tests)
3332
* [Running End-to-End Tests](#running-end-to-end-tests)
3433
* [Deploying the App via GitHub Pages](#deploying-the-app-via-github-pages)
@@ -132,15 +131,6 @@ ng build
132131

133132
The build artifacts will be stored in the `dist/` directory.
134133

135-
### Installing a 3rd party library
136-
137-
```bash
138-
ng install ng2-cli-test-lib
139-
```
140-
141-
[You can read more about this here.](https://github.com/angular/angular-cli/blob/master/docs/ng-install.md)
142-
143-
144134
### Running unit tests
145135

146136
```bash

addon/ng2/commands/install.js

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

addon/ng2/commands/uninstall.js

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

addon/ng2/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ module.exports = {
77
return {
88
'new' : require('./commands/new'),
99
'init' : require('./commands/init'),
10-
'install' : require('./commands/install'),
11-
'uninstall' : require('./commands/uninstall'),
1210
'test' : require('./commands/test'),
13-
'e2e' : require('./commands/e2e'),
11+
'e2e' : require('./commands/e2e'),
1412
'lint' : require('./commands/lint'),
1513
'format' : require('./commands/format')
1614
};

0 commit comments

Comments
 (0)