Releases: angular-schule/angular-cli-ghpages
v2.0.3
v2.0.1
This release adds one new feature:
Feature
- Adds
--remote
option via #191
Provide the remote name. If no value is provided,origin
is used. Has no function if--repo
is set.
Many thanks to @colinvh0!
Deployed by @JohannesHoppe.
v2.0.0
This release adds support for Angular v18. 🎉
Features
- support for Angular 18 (no support for earlier versions! use
v2.0.0-beta.1
for Angular 17) - support for the
add
parameter. This will only add, and never remove existing files. By default, existing files in the target branch are removed before adding the ones from thedist
folder. If you want to add new files but leave existing ones untouched, set the--add
parameter.
Installation
ng add angular-cli-ghpages@2.0.0
Thanks
- Thanks to @isalcedo for PR #188 (support for "add" parameter) 👍
- Deployed by @JohannesHoppe.
2.0.0-beta.1
This release adds support for Angular v17. 🎉
Features
- support for Angular 17 (no support for earlier versions) → support for various buildTargets (similar to angularfire) and recognises different output path configurations (see angular/angular-cli#26675 and angular/angular-cli#26304 (comment))
- completely removes the
--no-silent
option, error messages will be shown by default now (modern CI systems don't expose secrets anymore) - adds the
--dir
option, this overrides the directory for all published sources, relative to the current working directory. The normal logic with buildTargets and conventions is ignored in this case. - adds the
--no-notfound
option to not create a404.html
which should work great with Cloudflare pages, see #178 and see the Cloudflare pages docs - adds a
.nojekyll
file by default, can be disabled via--no-nojekyll
Install this beta version via
ng add angular-cli-ghpages@2.0.0-beta.1
Thanks
- Thanks to @fmalcher for reviewing the PR #179
- Deployed by @JohannesHoppe.
v1.0.6
v1.0.5
This release adds support for Angular v15. 🎉
Many thanks to @EdricChan03 for fixing a peer dependency issue. (fixes #158 via #159)
Deployed by @JohannesHoppe.
v1.0.3
This release adds support for Angular v14. 🎉
- many thanks to @fmalcher, this closes #148
- please don't use
v1.0.1
orv1.0.2
– both packages are broken - Deployed by @JohannesHoppe.
v.1.0.0
This release adds support for Angular v13. 🎉
Features
- support for Angular 13, many thanks to @fmalcher, this fixes #138 & #137 via #139
- fix: yarn installs incorrect version, because dist-tag is ignored, fixes #140 via 1c375f9
The code of this version is 100% identical to v1.0.0-rc.3. Only the version number was changed to work around the version resolution of yarn, which ignores npm dist-tags.
Starting with version 1 the option --configuration
was renamed to --build-target
.
BEFORE (does not work):
ng deploy --configuration=test
NOW:
ng deploy --build-target=test
If you use the old syntax, you will probably receive the following error:
An unhandled exception occurred: Configuration 'test' is not set in the workspace.
Deployed by @JohannesHoppe.