-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turbo build builds every file on each save #542
Comments
Is this related to the image problem you had before @dekode-kevin? Turbo only refreshes the package that is changed, also on {
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"]
},
"start": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}
|
By "everything", do you mean all packages, or is this related to a single package? Is the watch process faster if you navigate into the package and run |
In that case your beef is with postcss-url, not Turbo. |
When saving while running
npm run start
, instead of just building wherever you are, turbo is building everything.This is okay in itself but on bigger projects with more assets, the build starts getting very slow.
Example project: Wiersholm
The text was updated successfully, but these errors were encountered: