uppy/turbo.json
Prakash 2d429a8aef
@uppy/aws-s3: remote uploads and golden retriever (#6186)
- add support for remote uploads
- add support for restore using golden-retriever
- update examples
- #6181 still persists

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Mikael Finstad <finstaden@gmail.com>
2026-06-17 13:54:48 +05:30

52 lines
1.2 KiB
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"outputLogs": "new-only",
"dependsOn": ["^build"],
"inputs": [
"src/**/*.{js,ts,jsx,tsx}",
"package.json",
"tsconfig.json",
"tsconfig.build.json"
],
"outputs": ["lib/**", "dist/**"]
},
"uppy#build": {
"outputLogs": "new-only",
"dependsOn": ["^build"],
"inputs": [
"src/**/*.{js,ts,jsx,tsx}",
"package.json",
"bundle.mjs",
"build-bundle.mjs"
],
"outputs": ["lib/**", "dist/**"]
},
"uppy#build:css": {
"outputLogs": "new-only",
"dependsOn": ["^build:css"],
"inputs": ["src/**/*.scss"],
"outputs": ["lib/**/*.css", "dist/**/*.css"]
},
"build:css": {
"outputLogs": "new-only",
"inputs": ["src/**/*.scss"],
"outputs": ["lib/**/*.css", "dist/**/*.css"]
},
"typecheck": {
"outputLogs": "new-only",
"dependsOn": ["build"],
"inputs": ["src/**/*.{js,ts,jsx,tsx}", "tsconfig.json"]
},
"test": {
"dependsOn": ["^test"],
"cache": false,
"passThroughEnv": ["VITE_MINIO_CONFIG"]
},
"test:e2e": {
"dependsOn": ["^test:e2e"],
"cache": false
}
}
}