Move language host into bin/

This commit is contained in:
joeduffy 2017-09-08 06:13:09 -07:00
parent 527aee7b15
commit 6aae028768
4 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,6 @@ cp ${GOPATH}/bin/lumi ${PUBDIR}/bin/
mkdir -p ${PUBDIR}/sdk/
cp -R ${ROOT}/sdk/nodejs/bin/. ${PUBDIR}/sdk/nodejs/
cp -R ${ROOT}/sdk/nodejs/node_modules/. ${PUBDIR}/sdk/nodejs/node_modules/
cp ${ROOT}/sdk/nodejs/pulumi-langhost-nodejs ${PUBDIR}/sdk/nodejs/
echo sdk/nodejs/ >> ${PUBDIR}/packs.txt
# Tar up the file and then print it out for use by the caller or script.

View file

@ -1,4 +1,5 @@
/bin/
/bin/*
!/bin/pulumi-langhost-nodejs
/coverage/
/node_modules/
/proto/

View file

@ -0,0 +1,3 @@
#!/usr/bin/env node
require("./cmd/langhost");

View file

@ -1,3 +0,0 @@
#!/usr/bin/env node
require("./bin/cmd/langhost");