Skip to content

Commit fe0ebd6

Browse files
author
hongarc
committed
chore(doc): update reference grunt to gulp
1 parent 17e4f19 commit fe0ebd6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.gitpod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ ports:
44
tasks:
55
- init: yarn install
66
command: >
7-
yarn grunt fastBuild &&
8-
printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'yarn grunt fastBuild' and reload index.html.\n\n" &&
7+
yarn gulp fastBuild &&
8+
printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'yarn gulp fastBuild' and reload index.html.\n\n" &&
99
python3 -m http.server 8000 2>/dev/null

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ Thus, if you build the app locally, all you have to do in order to run the app i
7070
## Building yourself / Contributing Functionality
7171

7272
For contributing core functionality in the app, you'll probably want to test your changes
73-
at least once before submitting a pull request. That means you'll need the "Grunt.js" build tool to build the app:
73+
at least once before submitting a pull request. That means you'll need the "gulp.js" build tool to build the app:
7474

75-
https://gruntjs.com/getting-started
75+
https://gulpjs.com/docs/en/getting-started/quick-start
7676

7777
You'll also need `yarn` to download all the dependencies of the project.
7878

@@ -85,13 +85,13 @@ yarn install
8585

8686
git checkout -b newAwesomeFeature
8787
vim ./src/js/git/index.js # some changes
88-
yarn grunt fastBuild # skips tests and linting, faster build
88+
yarn gulp fastBuild # skips tests and linting, faster build
8989

9090
# after building you can open up your browser to the index.html
9191
# file generated and see your changes
9292

9393
vim ./src/js/git/index.js # more changes
94-
yarn grunt build # runs tests and lint
94+
yarn gulp build # runs tests and lint
9595

9696
git commit -am "My new sweet feature!"
9797
git push

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "Peter Cottle <petermcottle@gmail.com>",
77
"license": "MIT",
88
"scripts": {
9-
"test": "grunt test"
9+
"test": "gulp test"
1010
},
1111
"repository": {
1212
"type": "git",

0 commit comments

Comments
 (0)