From 03d8415f9678433e1c30e7d7c6db6c644de935d3 Mon Sep 17 00:00:00 2001 From: Jan Keromnes Date: Tue, 7 May 2019 19:35:52 +0200 Subject: [PATCH] Make Gitpod use `yarn grunt` instead of the global `grunt` --- .gitpod.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 7b1989a1..fedcbcb2 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,8 +2,8 @@ ports: - port: 8000 onOpen: open-preview tasks: -- init: yarn install && yarn global add grunt-cli +- init: yarn install command: > - grunt fastBuild && - printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'grunt fastBuild' and reload index.html.\n\n" && + yarn grunt fastBuild && + printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'yarn grunt fastBuild' and reload index.html.\n\n" && python3 -m http.server 8000 2>/dev/null