diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-06-10 15:32:25 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2014-06-24 10:17:50 -0400 |
commit | c5d9d88dce65b89a1d7d12b41ad254d5017a92a8 (patch) | |
tree | f50d49e5f1c04248d94414891565da7bb949d5ae /build | |
parent | 8d113104e980179e9eb4d092df0b1ab37cdc6fa5 (diff) | |
download | jquery-c5d9d88dce65b89a1d7d12b41ad254d5017a92a8.tar.gz jquery-c5d9d88dce65b89a1d7d12b41ad254d5017a92a8.zip |
Build: Move all external libraries to external directory
Closes gh-1593
Diffstat (limited to 'build')
-rw-r--r-- | build/ensure-sizzle.js | 2 | ||||
-rw-r--r-- | build/tasks/build.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/ensure-sizzle.js b/build/ensure-sizzle.js index 01a128efb..3686e697c 100644 --- a/build/ensure-sizzle.js +++ b/build/ensure-sizzle.js @@ -1,6 +1,6 @@ var fs = require( "fs" ), bower = require( "grunt-bowercopy/node_modules/bower" ), - sizzleLoc = __dirname + "/../src/sizzle/dist/sizzle.js", + sizzleLoc = __dirname + "/../external/sizzle/dist/sizzle.js", rversion = /Engine v(\d+\.\d+\.\d+(?:-\w+)?)/; /** diff --git a/build/tasks/build.js b/build/tasks/build.js index fa164cf92..03aacf9eb 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -26,7 +26,7 @@ module.exports = function( grunt ) { endFile: "src/outro.js" }, paths: { - sizzle: "sizzle/dist/sizzle" + sizzle: "../external/sizzle/dist/sizzle" }, rawText: {}, onBuildWrite: convert |