uppy/private/dev/package.json
Merlijn Vos 75c8007cf9
Isolate CSS building per package (#5799)
- Isolate CSS bundling per package
- Fix _all_ sass deprecation warnings
- Remove global scripts
- Run CSS building in parallel .

Is it repetitive? Yes a bit. But it's mono repo best practice and once
we introduce turbo each css build step can be individually cached. That
means when you edit scss in one package, only that needs to be rebuild,
not the TS of that package nor any other CSS. This PR lays the
groundwork for that.
2025-07-07 11:47:14 +02:00

22 lines
400 B
JSON

{
"name": "@uppy-dev/dev",
"version": "0.0.0",
"aliasify": {
"aliases": {
"@uppy": "../../packages/@uppy"
}
},
"dependencies": {
"@uppy/companion": "workspace:^"
},
"devDependencies": {
"vite": "^7.0.2"
},
"private": true,
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
"build": "vite build",
"preview": "vite preview"
}
}