Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Update System.js config.
This is needed to map import of angular2-log to the right folder.
*( I do not really get why it's needed, so if anybody have a clue or an answer, please
let me know !)*
```
```javascript
System.config({
map: {
'angular2-log': 'node_modules/angular2-log'
Expand Down Expand Up @@ -72,22 +72,22 @@ By default the demo app does NOT have any dependencies over angular2-log, you ha
You can choose between two differents approach:
* Using npm install:

```
```bash
cd angular2-log/demo
npm install angular2-log
```

* Using npm link:

```
```bash
cd angular2-log
[sudo] npm link
cd angular2-log/demo
[sudo] npm link angular2-log
```

Once this is done:
```
```bash
gulp demo
```

Expand Down