Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Angular 13 #38

Merged
merged 2 commits into from
Feb 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [12.x, 14.x]
node-version: [14, 16]
app:
- demo
- demo-bootstrap
- demo-material
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.0
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install latest Chrome
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Generating CRUD applications with the Angular CLI and Schematics.

## Tutorial: Getting Started

Follow the steps below to see how this library works, or [watch this screencast](https://www.youtube.com/watch?v=3mqWrmZtefE).

1. Clone this repository.

```
Expand Down Expand Up @@ -135,7 +137,6 @@ Paper Dashboard is the default if you don't specify a `--style` parameter and no

You can fork this repo and extend the generated code using Schematics. Information about how to use Schematics can be found here:

- 📺 [Introduction to Angular CRUD](https://www.youtube.com/watch?v=3mqWrmZtefE)
- [Generating Custom Code With The Angular CLI And Schematics](https://softwarearchitekt.at/post/2017/10/29/generating-custom-code-with-the-angular-cli-and-schematics.aspx)
- [Automatically Updating Angular Modules With Schematics And The CLI](https://softwarearchitekt.at/post/2017/12/01/generating-angular-code-with-schematics-part-ii-modifying-ngmodules.aspx)
- [Use Angular Schematics to Simplify Your Life](https://developer.okta.com/blog/2019/02/13/angular-schematics)
Expand Down
Loading