HookyQR / VSCodeMinify

Add minify function to VSCode 0.10+
53 stars 20 forks source link

Risk for bad performance #7

Open jrieken opened 7 years ago

jrieken commented 7 years ago

We have identified this extension as being potentially responsible for high loads in the extension host. That is likely because it runs potentially expensive minify operations in the extension host threads. That means execution of other extension features is blocked. I'd recommend, to shell out the expensive operations as we do it for linters, like vscode-eshint. See here for samples or ask @dbaeumer.