Skip to content

Commit

Permalink
Fix @uppy/angular component crash by loosening package.json versi…
Browse files Browse the repository at this point in the history
…on constraints (#3210)
  • Loading branch information
ajkachnic committed Oct 1, 2021
1 parent 56a67de commit eea0987
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions packages/@uppy/angular/package.json
Expand Up @@ -15,14 +15,14 @@
},
"private": false,
"dependencies": {
"@angular/animations": "~12.1.0",
"@angular/common": "~12.1.0",
"@angular/compiler": "~12.1.0",
"@angular/core": "~12.1.0",
"@angular/forms": "~12.1.0",
"@angular/platform-browser": "~12.1.0",
"@angular/platform-browser-dynamic": "~12.1.0",
"@angular/router": "~12.1.0",
"@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",
"@uppy/dashboard": "file:../dashboard",
"@uppy/drag-drop": "file:../drag-drop",
"@uppy/progress-bar": "file:../progress-bar",
Expand All @@ -36,14 +36,14 @@
"@uppy/core": ">=1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.1.0",
"@angular-eslint/builder": "12.2.0",
"@angular-eslint/eslint-plugin": "12.2.0",
"@angular-eslint/eslint-plugin-template": "12.2.0",
"@angular-eslint/schematics": "12.2.0",
"@angular-eslint/template-parser": "12.2.0",
"@angular/cli": "~12.1.0",
"@angular/compiler-cli": "~12.1.0",
"@angular-devkit/build-angular": ">= 11",
"@angular-eslint/builder": ">= 11",
"@angular-eslint/eslint-plugin": ">= 11",
"@angular-eslint/eslint-plugin-template": ">= 11",
"@angular-eslint/schematics": ">= 11",
"@angular-eslint/template-parser": ">= 11",
"@angular/cli": ">= 11",
"@angular/compiler-cli": ">= 11",
"@babel/core": "^7.10.5",
"@storybook/addon-actions": "^6.2.7",
"@storybook/addon-links": "^6.2.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/@uppy/angular/projects/angular/package.json
Expand Up @@ -19,8 +19,8 @@
"url": "git+https://github.com/transloadit/uppy.git"
},
"peerDependencies": {
"@angular/common": "~12.1.0",
"@angular/core": "~12.1.0",
"@angular/common": ">= 11",
"@angular/core": ">= 11",
"@uppy/core": ">=1",
"@uppy/dashboard": "^1.11.0",
"@uppy/drag-drop": "^1.4.16",
Expand Down

0 comments on commit eea0987

Please sign in to comment.