]> source.dussan.org Git - jquery.git/commitdiff
Install bower packages with npm install
authorOleg <markelog@gmail.com>
Mon, 22 Jul 2013 17:54:37 +0000 (21:54 +0400)
committerOleg <markelog@gmail.com>
Wed, 24 Jul 2013 14:42:46 +0000 (18:42 +0400)
(cherry picked from commit 806b0230cd14916907807ced638aea066465e1d4)

README.md
package.json

index efe0acb506595add0ede1e270d25291ae4d4408d..2c50051631db090875f235800b130a09793ab61b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -49,23 +49,17 @@ Install the [grunt-cli](http://gruntjs.com/getting-started#installing-the-cli) a
 npm install -g grunt-cli bower
 ```
 
-Enter the jquery directory and install the Node dependencies, this time *without* specifying a global(-g) install:
-
-```bash
-cd jquery && npm install
-```
-
 Make sure you have `grunt` and `bower` installed by testing:
 
 ```bash
 grunt -version
-bower --version
+bower -version
 ```
 
-Install `bower` dependencies:
+Enter the jquery directory and install the Node and Bower dependencies, this time *without* specifying a global(-g) install:
 
 ```bash
-bower install
+cd jquery && npm install
 ```
 
 Then, to get a complete, minified (w/ Uglify.js), linted (w/ JSHint) version of jQuery, type the following:
@@ -90,7 +84,7 @@ For example, an app that only used JSONP for `$.ajax()` and did not need to calc
 - **css**: The `.css()` method plus non-animated `.show()`, `.hide()` and `.toggle()`.
 - **deprecated**: Methods documented as deprecated but not yet removed; currently only `.andSelf()`.
 - **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
-- **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`. 
+- **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
 - **event-alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`.
 - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
 - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
index 4d260b49786be4b95a3d72b49c066c2d71e07eb0..310449388de0ccc58225f458050ad75e4d64a3d0 100644 (file)
                "archiver": "~0.4.6",
                "grunt-jsonlint": "~1.0.0"
        },
+
+       "scripts": {
+               "install": "bower install"
+       },
+
        "keywords": []
 }