Replace bower packages by NPM packages.

In the issue akveo/ng2-admin#162, search should be made to be sure of non regression.
This commit is contained in:
Geoffrey Roguelon 2016-08-18 12:45:44 -05:00
parent 174fef85cc
commit a30c41a11d
8 changed files with 4 additions and 41 deletions

View file

@ -39,11 +39,6 @@ npm install --global typings
npm install --global typescript
```
* bower
```
npm install --global bower
```
## Clone repository and install dependencies
You will need to clone the source code of ng2-admin GitHub repository:
@ -59,7 +54,7 @@ This will setup a working copy of ng2-admin on your local machine.
**Note**: If you have any issues after the installation, additionally run the following:
```bash
typings install && bower install
typings install
```
## Running local copy

View file

@ -54,8 +54,6 @@ ng2-admin/
├──typedoc.json * typescript documentation generator
├──tsconfig.json * config that webpack uses for typescript
├──typings.json * our typings manager
├──package.json * what npm uses to manage it's dependencies
├──bower.json * DEPRECATED - moving to npm as primary package manager for all dependenties
└──.bowerrc * DEPRECARD - temporary bower configuration
└──package.json * what npm uses to manage it's dependencies
```
In our template we tried to separate theme layer and presentation layer. We believe most of other templates have them combined. That's why when you start developing using them, it gets very hard for you to remove things you don't need.