components / jqueryui

Shim repository for jQuery UI.

Home Page:http://jqueryui.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to work with jquery-ui by bower?

alexchicn opened this issue · comments

It is different with https://github.com/jquery/jquery-ui.
And can't build it by grunt that is mentioned in the readme file.

I must set like this in bower.json:

{
  "dependencies": {
    "jquery-ui": "git://github.com/jquery/jquery-ui.git#1.10.3"
  }
}
commented

why are you specifying the git repo ? just use

"jquery-ui": "1.10.3"

it's working perfectly fine here

I can't get the complete version of jquery-ui by

bower install

The bower.json like this:

{
  "dependencies": {
    "jquery-ui": "1.10.3"
  }
}

I can't find the Gruntfile.js in components/jquery-ui.

commented

Why would there be a gruntfile ? This repo only contains built files.

I need build it by grunt that can be found in README.md.
https://github.com/components/jqueryui/blob/master/README.md

Do I miss something?

Although it is not a big problem and I can solve it by repo's url, I think it will be an issue for new user or developer if I am right.

commented

alright. 0c8967b

Thanks. It is perfect.