mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
- 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>
52 lines
1.2 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|