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

update-19 update Angular 19 #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ Angular Date Time Picker (MomentJs Adapter)

**Angular date time picker - MomentJs Adpater**

** This package supports Angular 18 **
+** This package supports Angular 19 **

Breaking Changes
-------
- Version 6.x.x >= no longer supports ng 18. If you need ng 18 support, stick with version 5.x.x.
- Version 5.x.x >= no longer supports ng 17. If you need ng 17 support, stick with version 4.x.x.
- Version 4.x.x >= no longer supports ng 16 - 13. If you need ng 16-13 support, stick with version 3.x.x.
- Version 2.x.x no longer supports <= ng 13. If you need View Engine support, stick with version 1.x.x.
Expand Down
11 changes: 9 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,17 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"aot": true,
"outputPath": "dist/date-time-picker-moment-adapter",
"allowedCommonJsDependencies": [
"file-saver",
"moment",
"moment-timezone"
],
"outputPath": {
"base": "dist/date-time-picker-moment-adapter"
},
"index": "src/index.html",
"polyfills": [
"src/polyfills.ts"
Expand Down
Loading