File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 22
22
"test" : " grunt test" ,
23
23
"ci" : " grunt ci"
24
24
},
25
+ "dependencies" : {
26
+ "jquery" : " 3.0.0"
27
+ },
25
28
"devDependencies" : {
26
29
"chalk" : " 1.1.3" ,
27
30
"commitplease" : " 2.3.1" ,
Original file line number Diff line number Diff line change 1
- ( function ( jQuery , window ) {
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
"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