Upgrade to latest Angular version

This commit is contained in:
Philipp Heuer 2022-09-07 15:02:46 +02:00
parent 1fecd2d840
commit 69c76d84d2
5 changed files with 2042 additions and 2649 deletions

4649
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -12,25 +12,24 @@
"cypress:run": "cypress run"
},
"dependencies": {
"@angular/animations": "14.0.7",
"@angular/common": "14.0.7",
"@angular/compiler": "14.0.7",
"@angular/core": "14.0.7",
"@angular/forms": "14.0.7",
"@angular/platform-browser": "14.0.7",
"@angular/platform-browser-dynamic": "14.0.7",
"@angular/router": "14.0.7",
"prettier": "^2.5.1",
"@angular/animations": "14.2.0",
"@angular/common": "14.2.0",
"@angular/compiler": "14.2.0",
"@angular/core": "14.2.0",
"@angular/forms": "14.2.0",
"@angular/platform-browser": "14.2.0",
"@angular/platform-browser-dynamic": "14.2.0",
"@angular/router": "14.2.0",
"rxjs": "~7.5.2",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.7",
"@angular-devkit/build-angular": "14.2.1",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular/cli": "14.0.7",
"@angular/compiler-cli": "14.0.7",
"@angular/cli": "14.2.1",
"@angular/compiler-cli": "14.2.0",
"@cypress/schematic": "^1.6.0",
"@types/jasmine": "~3.10.3",
"@types/node": "^17.0.15",
@ -48,7 +47,8 @@
"karma-coverage": "~2.1.1",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "14.0.2",
"ng-packagr": "14.2.1",
"prettier": "^2.7.1",
"ts-node": "~10.4.0",
"typescript": "4.7.4"
}

View file

@ -1,7 +1,7 @@
{
"name": "@meddv/ngx-pinch-zoom",
"version": "13.3.3",
"description": "Pinch zoom component for Angular 13.",
"version": "14.0.0",
"description": "Pinch zoom component for Angular 14.",
"repository": {
"type": "git",
"url": "git+https://github.com/konstantinschuette/ngx-pinch-zoom"
@ -25,7 +25,7 @@
"homepage": "http://ivylab.space/pinch-zoom",
"keywords": [
"Angular",
"Angular 13",
"Angular 14",
"ngx",
"Pinch zoom",
"Image zoom",
@ -36,10 +36,10 @@
"url": "https://github.com/konstantinschuette/ngx-pinch-zoom/issues"
},
"peerDependencies": {
"@angular/common": "~13.3.2",
"@angular/core": "~13.3.2"
"@angular/common": "^14.2.0",
"@angular/core": "^14.2.0"
},
"dependencies": {
"tslib": "^2.0.0",
"tslib": "^2.0.0"
}
}

View file

@ -8,6 +8,5 @@ import { PinchZoomComponent } from './pinch-zoom.component';
exports: [PinchZoomComponent],
providers: [],
bootstrap: [],
entryComponents: [PinchZoomComponent],
})
export class PinchZoomModule {}

View file

@ -5,6 +5,7 @@
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
"enableIvy": true,
"compilationMode": "partial"
}
}