Skip to content

Commit

Permalink
feat!: upgrade angular v17 (#55)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: support for angular 16 has been removed. Please use this package with angular 17 or higher
  • Loading branch information
aparzi authored Aug 21, 2024
1 parent ece59d4 commit 0ef8674
Show file tree
Hide file tree
Showing 9 changed files with 2,141 additions and 2,225 deletions.
Empty file modified .husky/commit-msg
100644 → 100755
Empty file.
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
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 16.0+ wrapper for flatpickr
An angular 17.0+ wrapper for flatpickr

## Installation

Expand Down
9 changes: 5 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
"buildTarget": "demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"test": {
Expand Down Expand Up @@ -169,6 +169,7 @@
}
},
"cli": {
"analytics": false
"analytics": false,
"packageManager": "pnpm"
}
}
50 changes: 25 additions & 25 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 16.0+ wrapper for flatpickr",
"description": "An angular 17.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": "^16.2.14",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/animations": "^16.2.12",
"@angular/cli": "~16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular-devkit/build-angular": "^17.3.8",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/animations": "^17.3.12",
"@angular/cli": "~17.3.8",
"@angular/common": "^17.3.12",
"@angular/compiler": "^17.3.12",
"@angular/compiler-cli": "^17.3.12",
"@angular/core": "^17.3.12",
"@angular/forms": "^17.3.12",
"@angular/platform-browser": "^17.3.12",
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/router": "^17.3.12",
"@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.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.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.39.0",
"eslint": "^8.57.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": "^16.2.3",
"ng-packagr": "^17.3.0",
"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.9.5",
"zone.js": "~0.13.3"
"typescript": "~5.2.2",
"zone.js": "~0.14.8"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=16.0.0",
"@angular/forms": ">=16.0.0",
"@angular/core": ">=17.0.0",
"@angular/forms": ">=17.0.0",
"flatpickr": "^4.5.0"
},
"commitlint": {
Expand Down
Loading

0 comments on commit 0ef8674

Please sign in to comment.