File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ module.exports = function( grunt ) {
3232 startFile : "src/intro.js" ,
3333 endFile : [ "src/exports/global.js" , "src/outro.js" ]
3434 } ,
35- paths : {
36- sizzle : "../external/sizzle/dist/sizzle"
37- } ,
3835 rawText : { } ,
3936 onBuildWrite : convert
4037 } ;
@@ -59,7 +56,7 @@ module.exports = function( grunt ) {
5956 . replace ( rdefineEnd , "" ) ;
6057
6158 // Sizzle treatment
62- } else if ( / ^ s i z z l e $ / . test ( name ) ) {
59+ } else if ( / \/ s i z z l e $ / . test ( name ) ) {
6360 contents = "var Sizzle =\n" + contents
6461
6562 // Remove EXPOSE lines from Sizzle
Original file line number Diff line number Diff line change 11define ( [
22 "./core" ,
3- "sizzle"
3+ "../external/sizzle/dist/ sizzle"
44] , function ( jQuery , Sizzle ) {
55
66jQuery . find = Sizzle ;
Original file line number Diff line number Diff line change 1818 // This detection allows AMD tests to be run in an iframe
1919 if ( QUnit . urlParams . amd && window . QUnit ) {
2020 require . config ( {
21- baseUrl : path ,
22- paths : {
23- sizzle : "external/sizzle/dist/sizzle"
24- }
21+ baseUrl : path
2522 } ) ;
2623 src = "src/jquery" ;
2724
You can’t perform that action at this time.
0 commit comments