summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2015-08-31 11:08:31 -0400
committerRob Loach <robloach@gmail.com>2015-08-31 11:08:31 -0400
commit3634e946153a3c2559023869223a42d2a652af72 (patch)
treeab7d5ce94e44e4247dcb1b2d16fadedbdd39a225
parent2cc8d4227f087d489b2e5630e0f10587b887e371 (diff)
downloadjquery-once-3634e946153a3c2559023869223a42d2a652af72.zip
jquery-once-3634e946153a3c2559023869223a42d2a652af72.tar.gz
jquery-once-3634e946153a3c2559023869223a42d2a652af72.tar.bz2
Fix code syntax in README.md
-rw-r--r--README.md34
1 files changed, 20 insertions, 14 deletions
diff --git a/README.md b/README.md
index 2311b6b..6b56e94 100644
--- a/README.md
+++ b/README.md
@@ -48,31 +48,37 @@ $('div.calendar').once().each(function() {
## Development
1. Ensure you are using [io.js](http://iojs.org) >= 3.2.0:
-
- node --version
+ ```
+ node --version
+ ```
2. Install dependencies through [npm](http://npmjs.org):
-
- npm install
+ ```
+ npm install
+ ```
3. Check coding style standard, and automated testing:
-
- npm test
+ ```
+ npm test
+ ```
4. Build `jquery.once.min.js` with:
-
- npm run build
+ ```
+ npm run build
+ ```
5. Update API documentation:
-
- npm run docs
+ ```
+ npm run docs
+ ```
6. Tag and publish the new versions to [npm](http://npmjs.com) with [Semantic
Versioning](http://semver.org/):
-
- git tag 2.1.0
- git push origin 2.1.0
- npm publish
+ ```
+ git tag 2.1.0
+ git push origin 2.1.0
+ npm publish
+ ```
## Change Log