aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2014-06-10 07:55:45 -0400
committerScott González <scott.gonzalez@gmail.com>2014-06-24 22:45:32 -0400
commit6df127a0b591d2a1437361f9cb6f3524a7b2e111 (patch)
tree40dc2b5fba9a00905a68e95efeab016cba4b88dd /Gruntfile.js
parent450d75f912f4161c475f18f9eeb7efd307c02eae (diff)
downloadjquery-ui-6df127a0b591d2a1437361f9cb6f3524a7b2e111.tar.gz
jquery-ui-6df127a0b591d2a1437361f9cb6f3524a7b2e111.zip
Build: Reorganize external directory
Put each external library into its own directory. Move jquery.js to external. Ref gh-1266
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js34
1 files changed, 17 insertions, 17 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 386b2a238..c357feb66 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -218,25 +218,25 @@ grunt.initConfig({
},
bowercopy: {
- options: {
- clean: true
- },
- qunit: {
- files: {
- "external": "qunit/qunit"
- }
- },
- mousewheel: {
- files: {
- "external": "jquery-mousewheel/jquery.mousewheel.js"
- }
- },
- jshint: {
+ all: {
+ options: {
+ clean: true,
+ destPrefix: "external"
+ },
files: {
- "external": "jshint/dist/jshint.js"
+ "qunit/qunit.js": "qunit/qunit/qunit.js",
+ "qunit/qunit.css": "qunit/qunit/qunit.css",
+ "qunit/MIT-LICENSE.txt": "qunit/MIT-LICENSE.txt",
+
+ "jquery-mousewheel/jquery.mousewheel.js": "jquery-mousewheel/jquery.mousewheel.js",
+
+ "jshint/jshint.js": "jshint/dist/jshint.js",
+ "jshint/LICENSE": "jshint/LICENSE",
+
+ "jquery/jquery.js": "jquery/jquery.js",
+ "jquery/MIT-LICENSE.txt": "jquery/MIT-LICENSE.txt"
}
- },
- "jquery.js": "jquery/dist/jquery.js"
+ }
}
});