From 14badd7218ffc7a9d14b38059bb4b15461637500 Mon Sep 17 00:00:00 2001 From: Mitchell Date: Tue, 10 Apr 2018 21:53:42 -0500 Subject: [PATCH] switch from yarn to npm in makefile --- client/app/pages/stats/stats.tsx | 4 ++-- makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/app/pages/stats/stats.tsx b/client/app/pages/stats/stats.tsx index 8c0eaca..7358438 100644 --- a/client/app/pages/stats/stats.tsx +++ b/client/app/pages/stats/stats.tsx @@ -45,10 +45,10 @@ export class Stats extends Component { datasets: [ { label: 'Count', - backgroundColor: 'rgba(114,137,218, 0.4)', + backgroundColor: 'rgba(114,137,218, 0.5)', borderColor: 'rgba(114,137,218, 0.9)', borderWidth: 1, - hoverBackgroundColor: 'rgba(114,137,218, 0.6)', + hoverBackgroundColor: 'rgba(114,137,218, 0.7)', hoverBorderColor: 'rgba(114,137,218, 1)', data: map(this.state.data, v => v.count), }, diff --git a/makefile b/makefile index 4f3ffa4..aad88a3 100644 --- a/makefile +++ b/makefile @@ -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