Skip to content

Commit e0ad278

Browse files
committed
update contribution doc
1 parent 047b79a commit e0ad278

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

CONTRIBUTING.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,31 @@
77
### Modifying the code
88
First, ensure that you have the latest [Node.js](http://nodejs.org/) and [npm](http://npmjs.org/) installed.
99

10-
Test that grunt is installed globally by running `grunt --version` at the command-line. If grunt isn't installed globally, run `npm install -g grunt` to install the latest version. _You may need to run `sudo npm install -g grunt`._
10+
Test that gulp is installed globally by running `grunt -v` at the command-line. If gulp isn't installed globally, run `npm install -g gulp` to install the latest version.
1111

1212
* Fork and clone the repo.
1313
* Run `npm install` and `bower install` to install all dev dependencies (including grunt).
1414
* Modify the `*.coffee` file.
15-
* Run `grunt` to grunt this project.
15+
* Run `gulp` to build this project.
1616

17-
Assuming that you don't see any red, you're ready to go. Just be sure to run `grunt` after making any changes, to ensure that nothing is broken.
17+
Assuming that you don't see any red, you're ready to go. Just be sure to run `gulp` after making any changes, to ensure that nothing is broken.
1818

1919
### Submitting pull requests
2020

2121
1. Create a new branch, please don't work in your `master` branch directly.
22-
1. Add failing tests for the change you want to make. Run `grunt` to see the tests fail.
22+
1. Add failing tests for the change you want to make. Run `gulp` to see the tests fail.
2323
1. Fix stuff.
24-
1. Run `grunt` to see if the tests pass. Repeat steps 2-4 until done.
24+
1. Run `gulp` to see if the tests pass. Repeat steps 2-4 until done.
2525
1. Open `_SpecRunner.html` unit test file(s) in actual browser to ensure tests pass everywhere.
2626
1. Update the documentation to reflect any changes.
2727
1. Push to your fork and submit a pull request.
2828

2929
### notes
3030

31-
Please don't edit files in the `dist` subdirectory and *.js files in `src` as they are generated via grunt.
31+
Please don't edit files in the `dist` subdirectory and *.js files in `src` as they are generated via gulp.
3232
You'll find source code in the `src` subdirectory!
3333
use `bower install` or `component install` to install dependencies first.
3434

3535

3636
### PhantomJS
37-
While grunt can run the included unit tests via [PhantomJS](http://phantomjs.org/), this shouldn't be considered a substitute for the real thing. Please be sure to test the `_SpecRunner.html` unit test file(s) in _actual_ browsers.
38-
39-
See the [Why does grunt complain that PhantomJS isn't installed?](https://github.com/gruntjs/grunt/blob/master/docs/faq.md#why-does-grunt-complain-that-phantomjs-isnt-installed) guide in the [Grunt FAQ](https://github.com/gruntjs/grunt/blob/master/docs/faq.md) for help with installing or troubleshooting PhantomJS.
37+
While gulp can run the included unit tests via [PhantomJS](http://phantomjs.org/), this shouldn't be considered a substitute for the real thing. Please be sure to test the `_SpecRunner.html` unit test file(s) in _actual_ browsers.

0 commit comments

Comments
 (0)