From c218bee80d7b7858b7e2b7c44d01d6995a18b6e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 26 Sep 2016 09:20:29 -0400 Subject: [PATCH] Build: Fix list of source files Fixes #15052 Closes gh-1751 --- Gruntfile.js | 14 +++++++------- 1 file 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; }) ), -- 2.39.5