mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 10:25:33 +00:00
This PR removes `@uppy/store-redux` , `@uppy/redux-dev-tools` , `@uppy/progress-bar` , `@uppy/drag-drop` , `@uppy/file-input` , `@uppy/aws-s3-multipart` - **Source Removal** Removed source Dirs of packages, including all source code, styles, documentation, and build configurations. - **Bundle & Exports** Removed related exports from `packages/uppy/src/bundle.ts` and `index.ts`. Cleaned up dependencies from `uppy/package.json`. - **Framework Cleanup** Removed components and exports from: - `@uppy/react` - `@uppy/vue` - `@uppy/svelte` - `@uppy/angular` - **Dependency Cleanup** Removed references across all `package.json`, `peerDependencies`, `tsconfig.*.json`, and `turbo.json` files. - **Example Updates** - Updated Angular example and `private/dev/DragDrop.js` - Removed deprecated plugin usage - Cleaned example dependencies - **Style Cleanup** Removed CSS imports from `packages/uppy/src/style.scss` and `examples/angular/src/styles.css`. Fixed TypeScript project references. - **Migration Guide** Updated `.github/MIGRATION.md`
35 lines
966 B
JSON
35 lines
966 B
JSON
{
|
|
"name": "example-angular",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "^18.0.0",
|
|
"@angular/common": "^18.0.0",
|
|
"@angular/compiler": "^18.0.0",
|
|
"@angular/core": "^18.0.0",
|
|
"@angular/forms": "^18.0.0",
|
|
"@angular/platform-browser": "^18.0.0",
|
|
"@angular/platform-browser-dynamic": "^18.0.0",
|
|
"@angular/router": "^18.0.0",
|
|
"@uppy/angular": "workspace:*",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/google-drive": "workspace:*",
|
|
"@uppy/tus": "workspace:*",
|
|
"@uppy/webcam": "workspace:*",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.14.3"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^18.0.2",
|
|
"@angular/cli": "^18.0.2",
|
|
"@angular/compiler-cli": "^18.0.0",
|
|
"typescript": "~5.4"
|
|
}
|
|
}
|