no more npm install

This commit is contained in:
Tommy Parnell
2017-12-28 21:28:51 -05:00
parent 3c42e3d62b
commit a2fdc9a92f
3 changed files with 3 additions and 6 deletions

View File

@@ -1 +1 @@
web: bin/hubot -a hipchat web: yarn run start-hubot-hipchat

View File

@@ -1,8 +1,5 @@
#!/bin/sh #!/bin/sh
set -e set -e
npm install
export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH" export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH"
exec node_modules/.bin/hubot --name "triatomic" "$@"
exec node_modules/.bin/hubot --name "triatomic" "$@"

View File

@@ -35,6 +35,6 @@
"time": "^0.12.0" "time": "^0.12.0"
}, },
"scripts": { "scripts": {
"meh": "hubot" "start-hubot-hipchat": "hubot --name triatomic hipchat"
} }
} }