Skip to content

Commit 0f00cc7

Browse files
authored
Merge pull request #5 from Gramli/feature/angular20
Update to Angular 20
2 parents afbee9f + 3207db5 commit 0f00cc7

File tree

11 files changed

+7082
-20027
lines changed

11 files changed

+7082
-20027
lines changed

.github/workflows/build_and_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup NodeJS
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18.19.x
20+
node-version: 22.20.x
2121
- name: Install dependencies
2222
run: npm ci
2323
- name: Build Lib
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup NodeJS
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version: 18.19.x
38+
node-version: 22.20.x
3939
- name: Install dependencies
4040
run: npm ci
4141
- name: Test Library
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup NodeJS
5252
uses: actions/setup-node@v3
5353
with:
54-
node-version: 18.19.x
54+
node-version: 22.20.x
5555
- name: Install dependencies
5656
run: npm ci
5757
- name: Run Lint

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The following list describes the compatibility with Angular:
1717
| `0.15.x` | `17.x` | Ivy (partial mode) |
1818
| `0.16.x` | `18.x` | Ivy (partial mode) |
1919
| `0.17.x` | `19.x` | Ivy (partial mode) |
20+
| `0.18.x` | `20.x` | Ivy (partial mode) |
2021

2122
For older versions visit:
2223
https://github.com/nodro7/angular-mydatepicker

angular.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,30 @@
148148
},
149149
"@angular-eslint/schematics:library": {
150150
"setParserOptionsProject": true
151+
},
152+
"@schematics/angular:component": {
153+
"type": "component"
154+
},
155+
"@schematics/angular:directive": {
156+
"type": "directive"
157+
},
158+
"@schematics/angular:service": {
159+
"type": "service"
160+
},
161+
"@schematics/angular:guard": {
162+
"typeSeparator": "."
163+
},
164+
"@schematics/angular:interceptor": {
165+
"typeSeparator": "."
166+
},
167+
"@schematics/angular:module": {
168+
"typeSeparator": "."
169+
},
170+
"@schematics/angular:pipe": {
171+
"typeSeparator": "."
172+
},
173+
"@schematics/angular:resolver": {
174+
"typeSeparator": "."
151175
}
152176
}
153177
}

0 commit comments

Comments
 (0)