1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 01:22:48 +00:00

switch from yarn to npm in makefile

This commit is contained in:
2018-04-10 21:53:42 -05:00
parent 5fa0f1ac2e
commit 14badd7218
2 changed files with 4 additions and 4 deletions

View File

@@ -2,13 +2,13 @@ run:
go run ./main.go
install:
go get && cd client && yarn install
go get && cd client && npm install
build-server:
go build -o bot ./main.go
build-client:
cd client && yarn run build
cd client && npm run build
clean:
rm -rf bot ./dist