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

feat!: upgrade to Angular 15 #53

Merged
merged 4 commits into from
Jul 25, 2024
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
16 changes: 0 additions & 16 deletions .browserslistrc

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://mattlewis92.github.io/angularx-flatpickr/

## About

An angular 14.0+ wrapper for flatpickr
An angular 15.0+ wrapper for flatpickr

## Installation

Expand Down
8 changes: 8 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,14 @@
}
}
},
"schematics": {
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
},
"cli": {
"analytics": false
}
Expand Down
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angularx-flatpickr",
"version": "7.3.0",
"description": "An angular 14.0+ wrapper for flatpickr",
"description": "An angular 15.0+ wrapper for flatpickr",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"pnpm test:watch\"",
"build:demo": "ng build --configuration production",
Expand Down Expand Up @@ -37,22 +37,22 @@
},
"homepage": "https://github.com/mattlewis92/angularx-flatpickr#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^14.1.2",
"@angular-eslint/builder": "14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/animations": "^14.1.0",
"@angular/cli": "~14.1.2",
"@angular/common": "^14.1.0",
"@angular/compiler": "^14.1.0",
"@angular/compiler-cli": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/forms": "^14.1.0",
"@angular/platform-browser": "^14.1.0",
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/router": "^14.1.0",
"@angular-devkit/build-angular": "^15.2.11",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/animations": "^15.2.10",
"@angular/cli": "~15.2.11",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/compiler-cli": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt": "^17.0.3",
Expand All @@ -61,22 +61,22 @@
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"angular-cli-ghpages": "^1.0.3",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"concurrently": "^7.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.18.0",
"eslint": "^8.28.0",
"flatpickr": "^4.6.13",
"husky": "^8.0.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"ng-packagr": "^14.1.0",
"ng-packagr": "^15.2.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rxjs": "~7.5.0",
Expand All @@ -85,15 +85,15 @@
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "~4.7.2",
"typescript": "~4.9.5",
"zone.js": "~0.11.4"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=5.0.0",
"@angular/forms": ">=5.0.0",
"@angular/core": ">=15.0.0",
"@angular/forms": ">=15.0.0",
"flatpickr": "^4.5.0"
},
"commitlint": {
Expand Down
Loading
Loading