Merge pull request #150 from bcbcarl/bugfix-149

Fix Issue #149
This commit is contained in:
Peter Cottle 2013-12-10 15:32:04 -08:00
commit ed234db15d
2 changed files with 4 additions and 4 deletions

View file

@ -52,7 +52,7 @@ Here is the high level process of the build:
Thus, if you build the app locally, all you have to do in order to run the app is just open up `index.html` in the root directory of the repo. Pretty simple Thus, if you build the app locally, all you have to do in order to run the app is just open up `index.html` in the root directory of the repo. Pretty simple
## Building yourself / Contributing Functionality ## Building yourself / Contributing Functionality
For contributing core functionality in the app, you'll probably want to test your changes For contributing core functionality in the app, you'll probably want to test your changes
at least once before submitting a pull request. That means you'll need the `grunt` build tool. It's a fairly at least once before submitting a pull request. That means you'll need the `grunt` build tool. It's a fairly
@ -72,7 +72,7 @@ git checkout -b newAwesomeFeature
# after building you can open up your browser to the index.html that is generated and see your changes # after building you can open up your browser to the index.html that is generated and see your changes
grunt watch # will keep watch over files and fastBuild whenever they change. lot of CPU though grunt watch # will keep watch over files and fastBuild whenever they change. lot of CPU though
# more changes # more changes
grunt build # build runs the tests and lint as well ./node_modules/grunt/bin/grunt build # build runs the tests and lint as well
git commit -am "My new sweet feature!" git commit -am "My new sweet feature!"
git push git push
# go online and request a pull # go online and request a pull

View file

@ -3,10 +3,10 @@
"version": "0.5.0", "version": "0.5.0",
"devDependencies": { "devDependencies": {
"grunt": "~0.3.17", "grunt": "~0.3.17",
"jasmine-node": "~1.0.28", "jasmine-node": "~1.11.0",
"grunt-browserify": "0.1.1", "grunt-browserify": "0.1.1",
"grunt-jslint": "~0.2.2-1", "grunt-jslint": "~0.2.2-1",
"grunt-jasmine-node": "0.0.6", "grunt-jasmine-node": "0.1.0",
"grunt-hash": "0.2.2", "grunt-hash": "0.2.2",
"grunt-rm": "~0.0.3", "grunt-rm": "~0.0.3",
"grunt-shell": "0.1.4", "grunt-shell": "0.1.4",