File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ We are using [Bower][bower] to install client-side dependencies. This step upda
3737 "angular-mocks": "1.4.x",
3838 "jquery": "~2.1.1",
3939 "bootstrap": "~3.1.1",
40- "angular-route": "~ 1.4.0 "
40+ "angular-route": "1.4.x "
4141 }
4242}
4343```
4444
45- The new dependency `"angular-route": "~ 1.4.0 "` tells bower to install a version of the
45+ The new dependency `"angular-route": "1.4.x "` tells bower to install a version of the
4646angular-route component that is compatible with version 1.4.x. We must tell bower to download
4747and install this dependency.
4848
Original file line number Diff line number Diff line change @@ -32,17 +32,18 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3232 "license": "MIT",
3333 "private": true,
3434 "dependencies": {
35- "angular": "~1.3.0",
36- "angular-mocks": "~1.3.0",
35+ "angular": "1.4.x",
36+ "angular-mocks": "1.4.x",
37+ "jquery": "~2.1.1",
3738 "bootstrap": "~3.1.1",
38- "angular-route": "~1.3.0 ",
39- "angular-resource": "~1.3.0 "
39+ "angular-route": "1.4.x ",
40+ "angular-resource": "1.4.x "
4041 }
4142}
4243```
4344
44- The new dependency `"angular-resource": "~1.3.0 "` tells bower to install a version of the
45- angular-resource component that is compatible with version 1.3 .x. We must ask bower to download
45+ The new dependency `"angular-resource": "1.4.x "` tells bower to install a version of the
46+ angular-resource component that is compatible with version 1.4 .x. We must ask bower to download
4647and install this dependency. We can do this by running:
4748
4849```
You can’t perform that action at this time.
0 commit comments