@@ -59,7 +59,7 @@ module.exports = function(grunt) {
59
59
]
60
60
} ,
61
61
// File mapping options can be specified in these 2 formats.
62
- built_mapping : {
62
+ builtMapping : {
63
63
options : { a : 6 , c : 66 } ,
64
64
expand : true ,
65
65
cwd : '<%= mappings.cwd %>' ,
@@ -68,7 +68,7 @@ module.exports = function(grunt) {
68
68
rename : '<%= mappings.rename %>' ,
69
69
extra : 123
70
70
} ,
71
- long3_mapping : {
71
+ long3Mapping : {
72
72
options : { a : 7 , c : 77 } ,
73
73
files : [
74
74
{
@@ -81,22 +81,22 @@ module.exports = function(grunt) {
81
81
}
82
82
]
83
83
} ,
84
- long4_mapping : {
84
+ long4Mapping : {
85
85
options : { a : 8 , c : 88 } ,
86
86
files : [
87
- '<%= run.long3_mapping .files %>'
87
+ '<%= run.long3Mapping .files %>'
88
88
]
89
89
} ,
90
- long5_mapping : {
90
+ long5Mapping : {
91
91
options : { a : 9 , c : 99 } ,
92
92
files : [
93
- '<%= run.long3_mapping .files %>' ,
94
- '<%= run.long4_mapping .files %>'
93
+ '<%= run.long3Mapping .files %>' ,
94
+ '<%= run.long4Mapping .files %>'
95
95
]
96
96
} ,
97
97
// Need to ensure the task function is run if no files or options were
98
98
// specified!
99
- no_files_or_options : { } ,
99
+ noFilesOrOptions : { } ,
100
100
} ,
101
101
} ) ;
102
102
@@ -124,7 +124,7 @@ module.exports = function(grunt) {
124
124
} ) ;
125
125
126
126
var expecteds = {
127
- 'run:no_files_or_options ' : {
127
+ 'run:noFilesOrOptions ' : {
128
128
options : { a : 1 , b : 11 , d : 9 } ,
129
129
files : [ ] ,
130
130
} ,
@@ -236,7 +236,7 @@ module.exports = function(grunt) {
236
236
} ,
237
237
] ,
238
238
} ,
239
- 'run:built_mapping ' : {
239
+ 'run:builtMapping ' : {
240
240
options : { a : 6 , b : 11 , c : 66 , d : 9 } ,
241
241
files : [
242
242
{
@@ -248,7 +248,7 @@ module.exports = function(grunt) {
248
248
cwd : grunt . config . get ( 'mappings.cwd' ) ,
249
249
src : [ '*1.js' , '*2.js' ] ,
250
250
dest : grunt . config . get ( 'mappings.dest' ) ,
251
- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
251
+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
252
252
extra : 123 ,
253
253
} ,
254
254
} ,
@@ -258,16 +258,16 @@ module.exports = function(grunt) {
258
258
extra : 123 ,
259
259
orig : {
260
260
expand : true ,
261
- cwd : grunt . config . get ( 'run.built_mapping .cwd' ) ,
261
+ cwd : grunt . config . get ( 'run.builtMapping .cwd' ) ,
262
262
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' ) ,
265
265
extra : 123 ,
266
266
} ,
267
267
} ,
268
268
] ,
269
269
} ,
270
- 'run:long3_mapping ' : {
270
+ 'run:long3Mapping ' : {
271
271
options : { a : 7 , b : 11 , c : 77 , d : 9 } ,
272
272
files : [
273
273
{
@@ -292,13 +292,13 @@ module.exports = function(grunt) {
292
292
cwd : grunt . config . get ( 'mappings.cwd' ) ,
293
293
src : [ '*1.js' , '*2.js' ] ,
294
294
dest : grunt . config . get ( 'mappings.dest' ) ,
295
- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
295
+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
296
296
extra : 123 ,
297
297
} ,
298
298
} ,
299
299
] ,
300
300
} ,
301
- 'run:long4_mapping ' : {
301
+ 'run:long4Mapping ' : {
302
302
options : { a : 8 , b : 11 , c : 88 , d : 9 } ,
303
303
files : [
304
304
{
@@ -323,13 +323,13 @@ module.exports = function(grunt) {
323
323
cwd : grunt . config . get ( 'mappings.cwd' ) ,
324
324
src : [ '*1.js' , '*2.js' ] ,
325
325
dest : grunt . config . get ( 'mappings.dest' ) ,
326
- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
326
+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
327
327
extra : 123 ,
328
328
} ,
329
329
} ,
330
330
] ,
331
331
} ,
332
- 'run:long5_mapping ' : {
332
+ 'run:long5Mapping ' : {
333
333
options : { a : 9 , b : 11 , c : 99 , d : 9 } ,
334
334
files : [
335
335
{
@@ -354,7 +354,7 @@ module.exports = function(grunt) {
354
354
cwd : grunt . config . get ( 'mappings.cwd' ) ,
355
355
src : [ '*1.js' , '*2.js' ] ,
356
356
dest : grunt . config . get ( 'mappings.dest' ) ,
357
- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
357
+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
358
358
extra : 123 ,
359
359
} ,
360
360
} ,
@@ -380,7 +380,7 @@ module.exports = function(grunt) {
380
380
cwd : grunt . config . get ( 'mappings.cwd' ) ,
381
381
src : [ '*1.js' , '*2.js' ] ,
382
382
dest : grunt . config . get ( 'mappings.dest' ) ,
383
- rename : grunt . config . get ( 'run.built_mapping .rename' ) ,
383
+ rename : grunt . config . get ( 'run.builtMapping .rename' ) ,
384
384
extra : 123 ,
385
385
} ,
386
386
} ,
@@ -427,8 +427,8 @@ module.exports = function(grunt) {
427
427
} ) ;
428
428
429
429
grunt . registerTask ( 'default' , [
430
- 'run:no_files_or_options ' ,
431
- 'test:no_files_or_options ' ,
430
+ 'run:noFilesOrOptions ' ,
431
+ 'test:noFilesOrOptions ' ,
432
432
'run:dist/built.js' ,
433
433
'test:dist/built.js' ,
434
434
'run:dist/built1.js' ,
@@ -441,14 +441,14 @@ module.exports = function(grunt) {
441
441
'test:long2' ,
442
442
'run:long3' ,
443
443
'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 ' ,
452
452
'run' ,
453
453
'test:all' ,
454
454
'test:counters' ,
0 commit comments