@@ -59,7 +59,7 @@ module.exports = function(grunt) {
5959 ]
6060 } ,
6161 // File mapping options can be specified in these 2 formats.
62- built_mapping : {
62+ builtMapping : {
6363 options : { a : 6 , c : 66 } ,
6464 expand : true ,
6565 cwd : '<%= mappings.cwd %>' ,
@@ -68,7 +68,7 @@ module.exports = function(grunt) {
6868 rename : '<%= mappings.rename %>' ,
6969 extra : 123
7070 } ,
71- long3_mapping : {
71+ long3Mapping : {
7272 options : { a : 7 , c : 77 } ,
7373 files : [
7474 {
@@ -81,22 +81,22 @@ module.exports = function(grunt) {
8181 }
8282 ]
8383 } ,
84- long4_mapping : {
84+ long4Mapping : {
8585 options : { a : 8 , c : 88 } ,
8686 files : [
87- '<%= run.long3_mapping .files %>'
87+ '<%= run.long3Mapping .files %>'
8888 ]
8989 } ,
90- long5_mapping : {
90+ long5Mapping : {
9191 options : { a : 9 , c : 99 } ,
9292 files : [
93- '<%= run.long3_mapping .files %>' ,
94- '<%= run.long4_mapping .files %>'
93+ '<%= run.long3Mapping .files %>' ,
94+ '<%= run.long4Mapping .files %>'
9595 ]
9696 } ,
9797 // Need to ensure the task function is run if no files or options were
9898 // specified!
99- no_files_or_options : { } ,
99+ noFilesOrOptions : { } ,
100100 } ,
101101 } ) ;
102102
@@ -124,7 +124,7 @@ module.exports = function(grunt) {
124124 } ) ;
125125
126126 var expecteds = {
127- 'run:no_files_or_options ' : {
127+ 'run:noFilesOrOptions ' : {
128128 options : { a : 1 , b : 11 , d : 9 } ,
129129 files : [ ] ,
130130 } ,
@@ -236,7 +236,7 @@ module.exports = function(grunt) {
236236 } ,
237237 ] ,
238238 } ,
239- 'run:built_mapping ' : {
239+ 'run:builtMapping ' : {
240240 options : { a : 6 , b : 11 , c : 66 , d : 9 } ,
241241 files : [
242242 {
@@ -248,7 +248,7 @@ module.exports = function(grunt) {
248248 cwd : grunt . config . get ( 'mappings.cwd' ) ,
249249 src : [ '*1.js' , '*2.js' ] ,
250250 dest : grunt . config . get ( 'mappings.dest' ) ,
251- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
251+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
252252 extra : 123 ,
253253 } ,
254254 } ,
@@ -258,16 +258,16 @@ module.exports = function(grunt) {
258258 extra : 123 ,
259259 orig : {
260260 expand : true ,
261- cwd : grunt . config . get ( 'run.built_mapping .cwd' ) ,
261+ cwd : grunt . config . get ( 'run.builtMapping .cwd' ) ,
262262 src : [ '*1.js' , '*2.js' ] ,
263- dest : grunt . config . get ( 'run.built_mapping .dest' ) ,
264- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
263+ dest : grunt . config . get ( 'run.builtMapping .dest' ) ,
264+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
265265 extra : 123 ,
266266 } ,
267267 } ,
268268 ] ,
269269 } ,
270- 'run:long3_mapping ' : {
270+ 'run:long3Mapping ' : {
271271 options : { a : 7 , b : 11 , c : 77 , d : 9 } ,
272272 files : [
273273 {
@@ -292,13 +292,13 @@ module.exports = function(grunt) {
292292 cwd : grunt . config . get ( 'mappings.cwd' ) ,
293293 src : [ '*1.js' , '*2.js' ] ,
294294 dest : grunt . config . get ( 'mappings.dest' ) ,
295- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
295+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
296296 extra : 123 ,
297297 } ,
298298 } ,
299299 ] ,
300300 } ,
301- 'run:long4_mapping ' : {
301+ 'run:long4Mapping ' : {
302302 options : { a : 8 , b : 11 , c : 88 , d : 9 } ,
303303 files : [
304304 {
@@ -323,13 +323,13 @@ module.exports = function(grunt) {
323323 cwd : grunt . config . get ( 'mappings.cwd' ) ,
324324 src : [ '*1.js' , '*2.js' ] ,
325325 dest : grunt . config . get ( 'mappings.dest' ) ,
326- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
326+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
327327 extra : 123 ,
328328 } ,
329329 } ,
330330 ] ,
331331 } ,
332- 'run:long5_mapping ' : {
332+ 'run:long5Mapping ' : {
333333 options : { a : 9 , b : 11 , c : 99 , d : 9 } ,
334334 files : [
335335 {
@@ -354,7 +354,7 @@ module.exports = function(grunt) {
354354 cwd : grunt . config . get ( 'mappings.cwd' ) ,
355355 src : [ '*1.js' , '*2.js' ] ,
356356 dest : grunt . config . get ( 'mappings.dest' ) ,
357- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
357+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
358358 extra : 123 ,
359359 } ,
360360 } ,
@@ -380,7 +380,7 @@ module.exports = function(grunt) {
380380 cwd : grunt . config . get ( 'mappings.cwd' ) ,
381381 src : [ '*1.js' , '*2.js' ] ,
382382 dest : grunt . config . get ( 'mappings.dest' ) ,
383- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
383+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
384384 extra : 123 ,
385385 } ,
386386 } ,
@@ -427,8 +427,8 @@ module.exports = function(grunt) {
427427 } ) ;
428428
429429 grunt . registerTask ( 'default' , [
430- 'run:no_files_or_options ' ,
431- 'test:no_files_or_options ' ,
430+ 'run:noFilesOrOptions ' ,
431+ 'test:noFilesOrOptions ' ,
432432 'run:dist/built.js' ,
433433 'test:dist/built.js' ,
434434 'run:dist/built1.js' ,
@@ -441,14 +441,14 @@ module.exports = function(grunt) {
441441 'test:long2' ,
442442 'run:long3' ,
443443 'test:long3' ,
444- 'run:built_mapping ' ,
445- 'test:built_mapping ' ,
446- 'run:long3_mapping ' ,
447- 'test:long3_mapping ' ,
448- 'run:long4_mapping ' ,
449- 'test:long4_mapping ' ,
450- 'run:long5_mapping ' ,
451- 'test:long5_mapping ' ,
444+ 'run:builtMapping ' ,
445+ 'test:builtMapping ' ,
446+ 'run:long3Mapping ' ,
447+ 'test:long3Mapping ' ,
448+ 'run:long4Mapping ' ,
449+ 'test:long4Mapping ' ,
450+ 'run:long5Mapping ' ,
451+ 'test:long5Mapping ' ,
452452 'run' ,
453453 'test:all' ,
454454 'test:counters' ,
0 commit comments