@@ -23,33 +23,33 @@ module.exports = function(grunt) {
2323 banner : '<%= meta.banner %>'
2424 } ,
2525 dist_js : {
26- src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/<%= pkg.name %>.js' ] ,
27- dest : 'dist/<%= pkg.name %>.js'
26+ src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/jquery. <%= pkg.name %>.js' ] ,
27+ dest : 'dist/jquery. <%= pkg.name %>.js'
2828 } ,
2929
3030 dist_extras_js : {
31- src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/<%= pkg.name %>.js' , 'src/<%= pkg.name %>.extras.js' ] ,
32- dest : 'dist/<%= pkg.name %>.with-extras.js'
31+ src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/jquery. <%= pkg.name %>.js' , 'src/jquery. <%= pkg.name %>.extras.js' ] ,
32+ dest : 'dist/jquery. <%= pkg.name %>.with-extras.js'
3333 } ,
3434
3535 dist_css : {
36- src : [ 'src/<%= pkg.name %>.css' ] ,
37- dest : 'dist/<%= pkg.name %>.css'
36+ src : [ 'src/jquery. <%= pkg.name %>.css' ] ,
37+ dest : 'dist/jquery. <%= pkg.name %>.css'
3838 } ,
3939
4040 dist_demo_js : {
41- src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/<%= pkg.name %>.js' ] ,
42- dest : 'gh-pages/dist/<%= pkg.name %>.js'
41+ src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/jquery. <%= pkg.name %>.js' ] ,
42+ dest : 'gh-pages/dist/jquery. <%= pkg.name %>.js'
4343 } ,
4444
4545 dist_extras_demo_js : {
46- src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/<%= pkg.name %>.js' , 'src/<%= pkg.name %>.extras.js' ] ,
47- dest : 'gh-pages/dist/<%= pkg.name %>.with-extras.js'
46+ src : [ 'src/jquery.coords.js' , 'src/jquery.collision.js' , 'src/utils.js' , 'src/jquery.draggable.js' , 'src/jquery. <%= pkg.name %>.js' , 'src/jquery. <%= pkg.name %>.extras.js' ] ,
47+ dest : 'gh-pages/dist/jquery. <%= pkg.name %>.with-extras.js'
4848 } ,
4949
5050 dist_demo_css : {
51- src : [ 'src/<%= pkg.name %>.css' ] ,
52- dest : 'gh-pages/dist/<%= pkg.name %>.css'
51+ src : [ 'src/jquery. <%= pkg.name %>.css' ] ,
52+ dest : 'gh-pages/dist/jquery. <%= pkg.name %>.css'
5353 }
5454 } ,
5555 uglify : {
@@ -58,25 +58,25 @@ module.exports = function(grunt) {
5858 } ,
5959 dist : {
6060 files : {
61- 'dist/<%= pkg.name %>.min.js' : [ '<%= concat.dist_js.dest %>' ]
61+ 'dist/jquery. <%= pkg.name %>.min.js' : [ '<%= concat.dist_js.dest %>' ]
6262 }
6363 } ,
6464
6565 dist_extras : {
6666 files : {
67- 'dist/<%= pkg.name %>.with-extras.min.js' : [ '<%= concat.dist_extras_js.dest %>' ]
67+ 'dist/jquery. <%= pkg.name %>.with-extras.min.js' : [ '<%= concat.dist_extras_js.dest %>' ]
6868 }
6969 } ,
7070
7171 dist_demo : {
7272 files : {
73- 'gh-pages/dist/<%= pkg.name %>.min.js' : [ '<%= concat.dist_js.dest %>' ] ,
73+ 'gh-pages/dist/jquery. <%= pkg.name %>.min.js' : [ '<%= concat.dist_js.dest %>' ] ,
7474 }
7575 } ,
7676
7777 dist_extras_demo : {
7878 files : {
79- 'gh-pages/dist/<%= pkg.name %>.with-extras.min.js' : [ '<%= concat.dist_extras_js.dest %>' ]
79+ 'gh-pages/dist/jquery. <%= pkg.name %>.with-extras.min.js' : [ '<%= concat.dist_extras_js.dest %>' ]
8080 }
8181 }
8282 } ,
@@ -87,16 +87,16 @@ module.exports = function(grunt) {
8787 banner : '<%= meta.minibanner %>'
8888 } ,
8989 files : {
90- "dist/<%= pkg.name %>.min.css" : [ "dist/<%= pkg.name %>.css" ] ,
91- "gh-pages/dist/<%= pkg.name %>.min.css" : [ "dist/<%= pkg.name %>.css" ]
90+ "dist/jquery. <%= pkg.name %>.min.css" : [ "dist/jquery. <%= pkg.name %>.css" ] ,
91+ "gh-pages/dist/jquery. <%= pkg.name %>.min.css" : [ "dist/jquery. <%= pkg.name %>.css" ]
9292 }
9393 }
9494 } ,
9595 jshint : {
9696 files : [ 'grunt.js' , 'src/**/*.js' , 'test/**/*.js' ]
9797 } ,
9898 watch : {
99- files : [ '<%= lint.files %>' , 'src/<%= pkg.name %>.css' ] ,
99+ files : [ '<%= lint.files %>' , 'src/jquery. <%= pkg.name %>.css' ] ,
100100 tasks : 'min concat'
101101 } ,
102102 jshint : {
0 commit comments