Skip to content

Commit

Permalink
Merge pull request #189 from pavlikxor/feature/ng-17
Browse files Browse the repository at this point in the history
Angular 17 support
  • Loading branch information
danielmoncada authored Dec 4, 2023
2 parents f99f4f4 + 99ffed7 commit 1743db8
Show file tree
Hide file tree
Showing 17 changed files with 13,944 additions and 18,210 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.16.1'
node-version: '20.10.0'
- name: Install dependencies
run: npm install
run: npm ci
- name: Run tests
run: npm run test-with-coverage
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cache:
addons:
chrome: stable
before_script:
- npm install -g @angular/cli@9.0.4
- npm install -g @angular/cli@17
- npm install
script:
- npm run test-with-coverage
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
[![npm](https://img.shields.io/npm/v/@danielmoncada/angular-datetime-picker.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/@danielmoncada/angular-datetime-picker)
[![npm](https://img.shields.io/npm/dm/@danielmoncada/angular-datetime-picker.svg)](https://www.npmjs.com/package/@danielmoncada/angular-datetime-picker)

** *This package supports Angular 9/10/11/12/13/14/15/16**
**The current version of this package supports Angular 17**

If you need support for other Angular version, see *Breaking Changes* below.

Breaking Changes
-------
- Version 14.x.x >= no longer supports < ng 13. If you need View Enginer support, stick with version 13.x.x.
- Version 17.x.x >= no longer supports ng 16 - 13. If you need ng 16-13 support, stick with version 16.x.x.
- Version 14.x.x >= no longer supports < ng 13. If you need View Engine support, stick with version 13.x.x.
- Version 13.1.0+ no longer supports the `MomentJs` time adapter natively. If you want to use the MomentJs adapter, see [GitHub](https://github.com/danielmoncada/date-time-picker-moment-adapter) or [npm](https://www.npmjs.com/package/@danielmoncada/angular-datetime-picker-moment-adapter).
- The date/time picker has been updated to support Angular 9-15, as well as compilation using Ivy.
- If you need Ng8 support, please stick with: https://github.com/DanielYKPan/date-time-picker
- If you need ng 8 support, please stick with: https://github.com/DanielYKPan/date-time-picker

Description
-------
Expand Down
9 changes: 4 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "date-time-picker-app:build"
"buildTarget": "date-time-picker-app:build"
},
"configurations": {
"production": {
"browserTarget": "date-time-picker-app:build:production"
"buildTarget": "date-time-picker-app:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "date-time-picker-app:build"
"buildTarget": "date-time-picker-app:build"
}
},
"test": {
Expand Down Expand Up @@ -186,6 +186,5 @@
}
}
}
},
"defaultProject": "date-time-picker-app"
}
}
Loading

0 comments on commit 1743db8

Please sign in to comment.