Prefix grunt with yarn in README.md as well

This commit is contained in:
Jan Keromnes 2019-05-09 07:47:09 +00:00
parent 03d8415f96
commit e879213d3b

View file

@ -85,13 +85,13 @@ yarn install
git checkout -b newAwesomeFeature
vim ./src/js/git/index.js # some changes
grunt fastBuild # skips tests and linting, faster build
yarn grunt fastBuild # skips tests and linting, faster build
# after building you can open up your browser to the index.html
# file generated and see your changes
vim ./src/js/git/index.js # more changes
grunt build # runs tests and lint
yarn grunt build # runs tests and lint
git commit -am "My new sweet feature!"
git push