File tree 3 files changed +18
-3
lines changed
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 20
20
"scripts" : {
21
21
"test" : " grunt"
22
22
},
23
+ "dependencies" : {
24
+ "jquery" : " >=1.7.0 <3.0.0"
25
+ },
23
26
"devDependencies" : {
24
27
"chalk" : " 1.1.3" ,
25
28
"commitplease" : " 2.3.1" ,
Original file line number Diff line number Diff line change 1
- ( function ( jQuery , window , undefined ) {
1
+ ; ( function ( factory ) {
2
+ /* jshint browserify:true */
3
+ if ( typeof define === "function" && define . amd ) {
4
+ // AMD. Register as an anonymous module.
5
+ define ( [ "jquery" ] , window , factory ) ;
6
+ } else if ( typeof module === "object" && module . exports ) {
7
+ // Node/CommonJS
8
+ module . exports = factory ( require ( "jquery" ) , window ) ;
9
+ } else {
10
+ // Browser globals
11
+ factory ( jQuery , window ) ;
12
+ }
13
+ } ( function ( jQuery , window ) {
2
14
// See http://bugs.jquery.com/ticket/13335
3
15
// "use strict";
Original file line number Diff line number Diff line change 1
-
2
- } ) ( jQuery , window ) ;
1
+ return jQuery ;
2
+ } ) ) ;
You can’t perform that action at this time.
0 commit comments