Skip to content

Commit

Permalink
@uppy/angular: fix peer dependencies (#4035)
Browse files Browse the repository at this point in the history
Our library is being published using Angular version 14.x,
which requires Angular version 14.0.0 or newer to work correctly.

Refs: #3997 (comment)
  • Loading branch information
aduh95 committed Aug 23, 2022
1 parent b0a130b commit 2ce8036
Show file tree
Hide file tree
Showing 3 changed files with 236 additions and 241 deletions.
24 changes: 12 additions & 12 deletions packages/@uppy/angular/package.json
Expand Up @@ -14,14 +14,14 @@
},
"private": true,
"dependencies": {
"@angular/animations": ">= 11",
"@angular/common": ">= 11",
"@angular/compiler": ">= 11",
"@angular/core": ">= 11",
"@angular/forms": ">= 11",
"@angular/platform-browser": ">= 11",
"@angular/platform-browser-dynamic": ">= 11",
"@angular/router": ">= 11",
"@angular/animations": ">= 14",
"@angular/common": ">= 14",
"@angular/compiler": ">= 14",
"@angular/core": ">= 14",
"@angular/forms": ">= 14",
"@angular/platform-browser": ">= 14",
"@angular/platform-browser-dynamic": ">= 14",
"@angular/router": ">= 14",
"@uppy/dashboard": "workspace:^",
"@uppy/drag-drop": "workspace:^",
"@uppy/progress-bar": "workspace:^",
Expand All @@ -35,9 +35,9 @@
"@uppy/core": "workspace:^"
},
"devDependencies": {
"@angular-devkit/build-angular": ">= 11",
"@angular/cli": ">= 11",
"@angular/compiler-cli": ">= 11",
"@angular-devkit/build-angular": ">= 14",
"@angular/cli": ">= 14",
"@angular/compiler-cli": ">= 14",
"@babel/core": "^7.17.5",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-actions": "^6.5.0-alpha.42",
Expand All @@ -56,6 +56,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^13.0.0",
"typescript": "~4.6"
"typescript": "~4.7"
}
}
4 changes: 2 additions & 2 deletions packages/@uppy/angular/projects/uppy/angular/package.json
Expand Up @@ -25,8 +25,8 @@
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">= 11",
"@angular/core": ">= 11",
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@uppy/core": "workspace:^",
"@uppy/dashboard": "workspace:^",
"@uppy/drag-drop": "workspace:^",
Expand Down

0 comments on commit 2ce8036

Please sign in to comment.