aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2014-02-21 17:25:59 +0100
committerJörn Zaefferer <joern.zaefferer@gmail.com>2014-03-05 16:04:43 +0100
commitd789d7ab1973f61484cc3c6307e8ff2978acd215 (patch)
tree1aa1515b6d2b49d5516bbf0febabf39e8d893c91 /Gruntfile.js
parenta40647f0e56096f8437056d238b4299fd19f2859 (diff)
downloadjquery-ui-d789d7ab1973f61484cc3c6307e8ff2978acd215.tar.gz
jquery-ui-d789d7ab1973f61484cc3c6307e8ff2978acd215.zip
Build: Use bower to manage client-side dependencies
Fixes #9507 Closes gh-1201
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 4d581faaa..08e89f90b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -213,6 +213,28 @@ grunt.initConfig({
src: "build/**/*.js"
},
grunt: "Gruntfile.js"
+ },
+
+ bowercopy: {
+ options: {
+ clean: true
+ },
+ qunit: {
+ files: {
+ "external": "qunit/qunit"
+ }
+ },
+ mousewheel: {
+ files: {
+ "external": "jquery-mousewheel/*.js"
+ }
+ },
+ jshint: {
+ files: {
+ "external": "jshint/dist/jshint.js"
+ }
+ },
+ "jquery.js": "jquery/dist/jquery.js"
}
});