You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,7 @@
39
39
40
40
A detailed changelog is available in the [releases](https://github.com/angular-schule/angular-cli-ghpages/releases) section.
41
41
42
-
In the past this project was a standalone program.
43
-
This is still possible:
44
-
See the documentation at [README_standalone](docs/README_standalone).
42
+
45
43
46
44
47
45
@@ -50,7 +48,8 @@ See the documentation at [README_standalone](docs/README_standalone).
50
48
This command has the following prerequisites:
51
49
52
50
- Git 1.9 or higher (execute `git --version` to check your version)
53
-
- Angular project created via [Angular CLI](https://github.com/angular/angular-cli) v8.3.0-next.0 or greater (execute `ng update @angular/[email protected] @angular/[email protected]` to upgrade your project if necessary)
51
+
- Angular project created via [Angular CLI](https://github.com/angular/angular-cli) v8.3.0 or greater (execute `ng update @angular/cli @angular/core` to upgrade your project if necessary)
52
+
- older Angular projects can still use the standalone program. See the documentation at [README_standalone](https://github.com/angular-schule/angular-cli-ghpages/blob/master/docs/README_standalone.md).
54
53
55
54
56
55
@@ -59,11 +58,11 @@ This command has the following prerequisites:
59
58
This quick start assumes that you are starting from scratch.
60
59
If you already have an existing Angular project on GitHub, skip step 1 and 2.
61
60
62
-
1. Install the next version of the Angular CLI (v8.3.0-next.0 or greater) globally
61
+
1. Install the latest version of the Angular CLI (v8.3.0 or greater) globally
63
62
and create a new Angular project.
64
63
65
64
```sh
66
-
npm install -g @angular/cli@next
65
+
npm install -g @angular/cli
67
66
ng new your-angular-project --defaults
68
67
cd your-angular-project
69
68
```
@@ -97,7 +96,7 @@ If you already have an existing Angular project on GitHub, skip step 1 and 2.
97
96
Which is the same as:
98
97
99
98
```sh
100
-
ng run your-angular-project:deploy
99
+
ng deploy your-angular-project
101
100
```
102
101
103
102
5. Your project should be available at `https://<username>.github.io/<repositoryname>`.
@@ -296,7 +295,9 @@ This can be very useful because it outputs what would happen without doing anyth
To avoid all these command-line cmd options, you can write down your configuration in the `angular.json` file in the `options` attribute of your deploy project's architect. Just change the kebab-case<supid="configuration-file-mark-1">[1](#configuration-file-def-1)</sup> to lower camel case<supid="configuration-file-mark-2">[2](#configuration-file-def-2)</sup>
298
+
To avoid all these command-line cmd options, you can write down your configuration in the `angular.json` file in the `options` attribute of your deploy project's architect. Just change the kebab-case<supid="configuration-file-mark-1">[1](#configuration-file-def-1)</sup> to lower camel case<supid="configuration-file-mark-2">[2](#configuration-file-def-2)</sup>.
299
+
300
+
A list of all avaiable options is available [here](https://github.com/angular-schule/angular-cli-ghpages/blob/master/src/deploy/schema.json).
######You can always use the [--dry-run](#dry-run) option to verify if your configuration is right.
323
+
> ℹ️ You can always use the [--dry-run](#dry-run) option to verify if your configuration is right.
323
324
324
325
---
325
326
@@ -342,7 +343,7 @@ We look forward to any help. PRs are welcome! 😃
342
343
## ⁉️ FAQ <aname="faq"></a>
343
344
344
345
Before posting any issue, [please read the FAQ first](https://github.com/angular-schule/angular-cli-ghpages/wiki/FAQ).
345
-
See the contributors documentation at [README_contributors](docs/README_contributors) if you want to debug and test this project.
346
+
See the contributors documentation at [README_contributors](https://github.com/angular-schule/angular-cli-ghpages/blob/master/docs/README_contributors.md) if you want to debug and test this project.
0 commit comments