Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit c8e1db2

Browse files
spectre6000Narretz
authored andcommitted
docs(tutorial): update angular module versions to reflect tutorial files
Closes #12991 Closes #12992
1 parent 74ed286 commit c8e1db2

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/content/tutorial/step_07.ngdoc

+2-2
Original file line numberDiff line numberDiff 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
4646
angular-route component that is compatible with version 1.4.x. We must tell bower to download
4747
and install this dependency.
4848

docs/content/tutorial/step_11.ngdoc

+7-6
Original file line numberDiff line numberDiff 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
4647
and install this dependency. We can do this by running:
4748

4849
```

0 commit comments

Comments
 (0)