shama / napa

:wine_glass: A helper for installing stuff without a package.json with npm.
MIT License
413 stars 34 forks source link

Can't download jQuery #62

Closed andreyluiz closed 8 years ago

andreyluiz commented 8 years ago

I have declared in my package.json:

"napa": {
  "jquery": "jquery/jquery#v2.1.4"
}

I run "napa" in the terminal and it says:

info download https://github.com/jquery/jquery/archive/v2.1.4.tar.gz into jquery

Then it ends the command, but no jquery folder appears in my node_modules. Any clues?

shama commented 8 years ago

I'm not sure but jQuery has an official npm compatible package: https://www.npmjs.com/package/jquery

Please do npm i jquery@2.1.4 --save instead.

andreyluiz commented 8 years ago

Thank's. :+1: