This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed 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
37
37
"angular-mocks": "1.4.x",
38
38
"jquery": "~2.1.1",
39
39
"bootstrap": "~3.1.1",
40
- "angular-route": "~ 1.4.0 "
40
+ "angular-route": "1.4.x "
41
41
}
42
42
}
43
43
```
44
44
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
46
46
angular-route component that is compatible with version 1.4.x. We must tell bower to download
47
47
and install this dependency.
48
48
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
32
32
"license": "MIT",
33
33
"private": true,
34
34
"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",
37
38
"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 "
40
41
}
41
42
}
42
43
```
43
44
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
46
47
and install this dependency. We can do this by running:
47
48
48
49
```
You can’t perform that action at this time.
0 commit comments