File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 2222 "test" : " grunt test" ,
2323 "ci" : " grunt ci"
2424 },
25+ "dependencies" : {
26+ "jquery" : " 3.0.0"
27+ },
2528 "devDependencies" : {
2629 "chalk" : " 1.1.3" ,
2730 "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 ) {
214"use strict" ;
Original file line number Diff line number Diff line change 11
2- } ) ( jQuery , window ) ;
2+ } ) ) ;
You can’t perform that action at this time.
0 commit comments