aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2016-09-26 09:20:29 -0400
committerScott González <scott.gonzalez@gmail.com>2016-09-27 08:41:33 -0400
commitc218bee80d7b7858b7e2b7c44d01d6995a18b6e4 (patch)
tree6be533bc162eba603fcc4bffdda771b69e7856a8
parent69e66ea6556584c39621c184f8f790a1011408ce (diff)
downloadjquery-ui-1-12-stable.tar.gz
jquery-ui-1-12-stable.zip
Build: Fix list of source files1-12-stable
Fixes #15052 Closes gh-1751
-rw-r--r--Gruntfile.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index be423b531..ae382ad8d 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -7,18 +7,18 @@ var
coreFiles = [
"core.js",
"widget.js",
- "mouse.js",
- "draggable.js",
- "droppable.js",
- "resizable.js",
- "selectable.js",
- "sortable.js",
+ "widgets/mouse.js",
+ "widgets/draggable.js",
+ "widgets/droppable.js",
+ "widgets/resizable.js",
+ "widgets/selectable.js",
+ "widgets/sortable.js",
"effect.js"
],
uiFiles = coreFiles.map(function( file ) {
return "ui/" + file;
- }).concat( expandFiles( "ui/*.js" ).filter(function( file ) {
+ }).concat( expandFiles( "ui/**/*.js" ).filter(function( file ) {
return coreFiles.indexOf( file.substring( 3 ) ) === -1;
}) ),