Using bower install jquery
command what I get in jquery
folder are dist
folder with jquery.js
and jquery.min.js
, src
folder with the whole bunch of js files that make up jquery, I suppose, bower.json
and licence files.
How could I install jquery.js
or jquery.min.js
only?
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- jQuery add and remove delay
- Include empty value fields in jQuery .serialize()
- Disable Browser onUnload on certain links?
- how to get selected text from iframe with javascri
You can also use this parameter:
This will ignore the unecessary files to work when you download files.
From the jQuery download page:
bower install http://code.jquery.com/jquery-2.1.0.min.js
You can use bower-installer and an extra "install" section in your
bower.json
file like:With that "install" section you can specify the install folder.
It than automatically creates the folders - if they're not existing - and installs just the required files like
jquery.js
ornormalize.css
to the specified "css" or "js" folder.