Skip to content

Commit

Permalink
fix(ng2 blueprint): fix ordering in devDependencies of package.json b…
Browse files Browse the repository at this point in the history
…lueprint

Fix the ordering of the devDependencies in the package.json so they are in correct alphabetical order.
Removes the minor annoyance (when looking at file diffs) of the ts-node property having its location changed
whenever a new module is added using npm install.

Close #288
  • Loading branch information
Chris Pearce authored and filipesilva committed Mar 10, 2016
1 parent f020f8a commit baaf406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/ng2/blueprints/ng2/files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"karma-jasmine": "^0.3.6",
"protractor": "^3.0.0",
"silent-error": "^1.0.0",
"ts-node": "^0.5.5",
"tslint": "^3.3.0",
"typescript": "^1.8.7",
"typings": "^0.6.6",
"ts-node": "^0.5.5"
"typings": "^0.6.6"
}
}

0 comments on commit baaf406

Please sign in to comment.