Skip to content

Commit

Permalink
locking angular version to 2.2.0 until 2.3.0 becomes more stable: ang…
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmarques committed Dec 10, 2016
1 parent 272c8df commit 79c456b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
},
"license": "MIT",
"dependencies": {
"@angular/common": "^2.2.0",
"@angular/compiler": "^2.2.0",
"@angular/core": "^2.2.0",
"@angular/forms": "^2.2.0",
"@angular/http": "^2.2.0",
"@angular/platform-browser": "^2.2.0",
"@angular/platform-browser-dynamic": "^2.2.0",
"@angular/router": "^3.2.0",
"core-js": "^2.4.1",
"@angular/common": "2.2.0",
"@angular/compiler": "2.2.0",
"@angular/core": "2.2.0",
"@angular/forms": "2.2.0",
"@angular/http": "2.2.0",
"@angular/platform-browser": "2.2.0",
"@angular/platform-browser-dynamic": "2.2.0",
"@angular/router": "3.2.0",
"core-js": "2.4.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.25"
"zone.js": "0.6.25"
},
"devDependencies": {
"@types/node": "^6.0.45",
Expand Down Expand Up @@ -49,7 +49,7 @@
"resolve-url-loader": "^1.6.0",
"sass-loader": "^3.2.2",
"style-loader": "^0.13.1",
"typescript": "^2.0.3",
"typescript": "2.0.3",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
Expand Down

2 comments on commit 79c456b

@jonmchan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might want to use ~2.2.0 instead of 2.2.0 so you can at least get the latest patch for the 2.2.x branch of code which is 2.2.4.

@rjmarques
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right @jonmchan . Just changed this. Thanks

Please sign in to comment.