Open ivanvoznyakovsky opened 6 years ago
@ivanvoznyakovsky
Sorry for the late answer!
I have added a useFastGlob
in version 0.80.0 as global, package and/or target settings, which can help to speed up the deployment.
{
"deploy.reloaded": {
"targets": [
{
// ...
"useFastGlob": true,
"mappings": {
"sources": "/",
"sources/**/*": "/"
}
}
]
}
}
If you use the new setting(s), you have to change your patterns, by removing leading /
, e.g., because fast-glob works a little bit different.
An alternative is to use "fast file check" as described in that issue opened by @carlosesilva.
@mkloubert great. thnx, I'll try that out
"useFastGlob": true, same. up to 20 seconds
"fastCheckOnSave": true, looks fine
Description
Deploying a single file takes at minimum 30sec whereas vs-deploy does it immediately.
Logs
Your environment