Skip to content

Commit

Permalink
Build: Move all external libraries to external directory
Browse files Browse the repository at this point in the history
Closes gh-1593
  • Loading branch information
scottgonzalez authored and timmywil committed Jun 24, 2014
1 parent 8d11310 commit c5d9d88
Show file tree
Hide file tree
Showing 16 changed files with 70 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .jscsrc
@@ -1,5 +1,5 @@
{
"preset": "jquery",

"excludeFiles": [ "src/intro.js", "src/outro.js", "src/sizzle/**/*" ]
"excludeFiles": [ "external", "src/intro.js", "src/outro.js" ]
}
3 changes: 1 addition & 2 deletions .jshintignore
@@ -1,7 +1,6 @@
external
src/intro.js
src/outro.js
src/sizzle/**/*
test/libs/**/*
test/data/jquery-1.9.1.js
test/data/badcall.js
test/data/badjson.js
Expand Down
26 changes: 13 additions & 13 deletions Gruntfile.js
Expand Up @@ -47,22 +47,22 @@ module.exports = function( grunt ) {
}
},
bowercopy: {
options: {
clean: true
},
src: {
files: {
"src/sizzle/dist": "sizzle/dist"
}
},
tests: {
all: {
options: {
destPrefix: "test/libs"
clean: true,
destPrefix: "external"
},
files: {
"qunit": "qunit/qunit",
"require.js": "requirejs/require.js",
"sinon/fake_timers.js": "sinon/lib/sinon/util/fake_timers.js"
"sizzle/dist": "sizzle/dist",

"qunit/qunit.js": "qunit/qunit/qunit.js",
"qunit/qunit.css": "qunit/qunit/qunit.css",
"qunit/MIT-LICENSE.txt": "qunit/MIT-LICENSE.txt",

"requirejs/require.js": "requirejs/require.js",

"sinon/fake_timers.js": "sinon/lib/sinon/util/fake_timers.js",
"sinon/LICENSE.txt": "sinon/LICENSE"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion 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+)?)/;

/**
Expand Down
2 changes: 1 addition & 1 deletion build/tasks/build.js
Expand Up @@ -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
Expand Down
21 changes: 21 additions & 0 deletions external/qunit/MIT-LICENSE.txt
@@ -0,0 +1,21 @@
Copyright 2013 jQuery Foundation and other contributors
http://jquery.com/

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions external/sinon/LICENSE.txt
@@ -0,0 +1,27 @@
(The BSD License)

Copyright (c) 2010-2013, Christian Johansen, christian@cjohansen.no
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Christian Johansen nor the names of his contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions test/index.html
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>jQuery Test Suite</title>
<link rel="Stylesheet" media="screen" href="libs/qunit/qunit.css" />
<link rel="Stylesheet" media="screen" href="../external/qunit/qunit.css" />
<link rel="Stylesheet" media="screen" href="data/testsuite.css" />
<!-- Includes -->

Expand All @@ -14,9 +14,9 @@
-->
<script src="data/jquery-1.9.1.js"></script>

<script src="libs/qunit/qunit.js"></script>
<script src="libs/require.js"></script>
<script src="libs/sinon/fake_timers.js"></script>
<script src="../external/qunit/qunit.js"></script>
<script src="../external/requirejs/require.js"></script>
<script src="../external/sinon/fake_timers.js"></script>
<!-- See testinit for the list of tests -->
<script src="data/testinit.js"></script>

Expand Down
2 changes: 1 addition & 1 deletion test/jquery.js
Expand Up @@ -19,7 +19,7 @@
require.config({
baseUrl: path,
paths: {
sizzle: "src/sizzle/dist/sizzle"
sizzle: "external/sizzle/dist/sizzle"
}
});
src = "src/jquery";
Expand Down

0 comments on commit c5d9d88

Please sign in to comment.