mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Map Sizzle to a path with config to allow users to put Sizzle wherever they want
This commit is contained in:
parent
812319093a
commit
5fbf4a4fe3
@ -26,6 +26,9 @@ module.exports = function( grunt ) {
|
||||
startFile: "src/intro.js",
|
||||
endFile: "src/outro.js"
|
||||
},
|
||||
paths: {
|
||||
sizzle: "../bower_components/sizzle/dist/sizzle"
|
||||
},
|
||||
rawText: {},
|
||||
onBuildWrite: convert
|
||||
};
|
||||
@ -47,7 +50,7 @@ module.exports = function( grunt ) {
|
||||
.replace( rdefineEnd, "" );
|
||||
|
||||
// Sizzle treatment
|
||||
} else if ( /\/sizzle$/.test( name ) ) {
|
||||
} else if ( /^sizzle$/.test( name ) ) {
|
||||
contents = "var Sizzle =\n" + contents
|
||||
// Remove EXPOSE lines from Sizzle
|
||||
.replace( /\/\/\s*EXPOSE[\w\W]*\/\/\s*EXPOSE/, "return Sizzle;" );
|
||||
|
@ -1,6 +1,6 @@
|
||||
define([
|
||||
"./core",
|
||||
"../bower_components/sizzle/dist/sizzle"
|
||||
"sizzle"
|
||||
], function ( jQuery, Sizzle ) {
|
||||
|
||||
jQuery.find = Sizzle;
|
||||
|
7
test/jquery.js
vendored
7
test/jquery.js
vendored
@ -28,7 +28,12 @@
|
||||
// If QUnit is on window, this is the main window
|
||||
// This detection allows AMD tests to be run in an iframe
|
||||
if ( QUnit.urlParams.amd && window.QUnit ) {
|
||||
require.config({ baseUrl: path });
|
||||
require.config({
|
||||
baseUrl: path,
|
||||
paths: {
|
||||
sizzle: path + "bower_components/sizzle/dist/sizzle"
|
||||
}
|
||||
});
|
||||
src = "src/jquery";
|
||||
// Include tests if specified
|
||||
if ( typeof loadTests !== "undefined" ) {
|
||||
|
Loading…
Reference in New Issue
Block a user