When working on Language Servers, it's common to watch-compile on two folders. For example:
https://github.com/octref/vscode-language-server-template/blob/master/package.json#L9-L10
For us, we have
"compile": "gulp compile-extension:css-language-features-client && gulp compile-extension:css-language-features-server"
But we can't do
gulp watch-extension:css-language-features-client && gulp watch-extension:css-language-features-server
Because only one will be run.
Are there any way to do this with gulp, or can we include something like https://github.com/mysticatea/npm-run-all or https://github.com/kimmobrunfeldt/concurrently?
When working on Language Servers, it's common to watch-compile on two folders. For example:
https://github.com/octref/vscode-language-server-template/blob/master/package.json#L9-L10
For us, we have
But we can't do
Because only one will be run.
Are there any way to do this with gulp, or can we include something like https://github.com/mysticatea/npm-run-all or https://github.com/kimmobrunfeldt/concurrently?