mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-01 06:21:35 +00:00
examples/angular still depends on @angular/core ^19.2.18, which declares a peer on zone.js ~0.15.0, so the 0.16 bump left it running against an unsupported peer. packages/@uppy/angular is on Angular 21 and keeps ~0.16.2. Adds the missing changeset: @uppy/companion and @uppy/angular both take runtime dependency bumps in this PR and would otherwise never be released.
35 lines
958 B
JSON
35 lines
958 B
JSON
{
|
|
"name": "example-angular",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development",
|
|
"test": "ng test"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/common": "^19.2.17",
|
|
"@angular/compiler": "^19.2.18",
|
|
"@angular/core": "^19.2.18",
|
|
"@angular/forms": "^19.2.17",
|
|
"@angular/platform-browser": "^19.2.17",
|
|
"@angular/platform-browser-dynamic": "^19.2.17",
|
|
"@angular/router": "^19.2.17",
|
|
"@uppy/angular": "workspace:*",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/tus": "workspace:*",
|
|
"@uppy/webcam": "workspace:*",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^19.2.6",
|
|
"@angular/cli": "^19.2.6",
|
|
"@angular/compiler-cli": "^19.2.17",
|
|
"typescript": "~5.7.2"
|
|
}
|
|
}
|