mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-31 22:11:28 +00:00
Closes #5822 - `"^build"` makes sure dependencies of the package are build first. - Make dependencies of @uppy/components actually dependencies - Remove concurrency setting. It was too high for computers with low RAM.
17 lines
322 B
JSON
17 lines
322 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build", "@uppy/core#build"],
|
|
"outputs": ["lib/**"]
|
|
},
|
|
"build:css": {
|
|
"inputs": [
|
|
"src/input.css",
|
|
"src/**/*.{js,ts,jsx,tsx}",
|
|
"tailwind.config.js"
|
|
],
|
|
"outputs": ["dist/styles.css"]
|
|
}
|
|
}
|
|
}
|