mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
- 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.
22 lines
400 B
JSON
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"
|
|
}
|
|
}
|