uppy/package.json
Mikael Finstad 8df48060fa
Fix turbo scripts (#5859)
[always run yarn build before
watch](2507302e29)

or else everything doesn't get built
closes https://github.com/transloadit/uppy/issues/5858
2025-07-30 18:42:48 +02:00

43 lines
2 KiB
JSON

{
"name": "@uppy-dev/build",
"version": "0.0.0",
"private": true,
"description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
"license": "MIT",
"workspaces": [
"examples/*",
"packages/@uppy/*",
"packages/@uppy/angular/projects/uppy/*",
"packages/uppy",
"private/*"
],
"scripts": {
"build": "turbo run build build:css --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"build:clean": "cp .gitignore .gitignore.bak && printf '!node_modules\n!**/node_modules/**/*\n' >> .gitignore; git clean -Xfd packages e2e .parcel-cache coverage .turbo; mv .gitignore.bak .gitignore",
"build:watch": "yarn build && turbo watch build build:css --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"migrate:components": "yarn workspace @uppy/components migrate",
"check": "yarn exec biome check --write",
"check:ci": "yarn exec biome ci",
"dev": "yarn workspace @uppy-dev/dev dev",
"dev:with-companion": "npm-run-all --parallel start:companion dev",
"start:companion": "yarn workspace @uppy/companion start:dev",
"test": "turbo run test --filter='./packages/@uppy/*' --filter='./packages/uppy' --filter='./examples/{react,vue,sveltekit}'",
"test:watch": "turbo watch test --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"typecheck": "turbo run typecheck --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"version": "changeset version && corepack yarn install --mode=update-lockfile",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"npm-run-all": "^4.1.5",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.4.1+sha224.fd21d9eb5fba020083811af1d4953acc21eeb9f6ff97efd1b3f9d4de",
"engines": {
"node": "^16.15.0 || >=18.0.0",
"yarn": "3.6.1"
}
}