Would it be possible to add a binary docker-compose-language-service to launch the server?
Right now we have to execute node @microsoft/compose-language-service from the terminal.
We created a wrapper here, an exectuable docker-compose-language-service with:
#!/usr/bin/env bash
exec node $PATH_TO_MODULES/@microsoft/compose-language-service/lib/server.js" "$@"
We try to automate the configuration of the server here and it assumes the wrapper exists.
Things would be simpler if the binary existed already :-)
Thank you in advance
Would it be possible to add a binary
docker-compose-language-serviceto launch the server?Right now we have to execute
node @microsoft/compose-language-servicefrom the terminal.We created a wrapper here, an exectuable
docker-compose-language-servicewith:We try to automate the configuration of the server here and it assumes the
wrapperexists.Things would be simpler if the binary existed already :-)
Thank you in advance