components / jqueryui

Shim repository for jQuery UI.

Home Page:http://jqueryui.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AMD loading broken on minified scripts

sephii opened this issue · comments

Using requirejs and trying to use jquery ui plugins from the minified/ directory raises a "Error: Script error for: jquery-ui/core". This is because minified scripts depend on non-minified scripts (eg. "./core" instead of "./core.min").

This occurs in version 1.11.2, installed with Bower.

well... these are the steps, I've done to minify jqueryui:

wget https://github.com/jquery/jquery-ui/archive/1.11.2.tar.gz
tar xzf 1.11.2.tar.gz
cd jquery-ui-1.11.2
sudo npm -g install grunt-cli
npm install
grunt concat
grunt uglify

Should I change something?

Thanks for your answer, I reported the issue to the jQueryUI bugtracker (http://bugs.jqueryui.com/ticket/10674).