@@ -103,7 +103,7 @@ module.exports = function(grunt) {
103
103
module : null , // no bundle module for all the html2js templates
104
104
base : '.' ,
105
105
rename : function ( moduleName ) {
106
- return ' uib/' + moduleName ;
106
+ return ` uib/${ moduleName } ` ;
107
107
}
108
108
} ,
109
109
files : [ {
@@ -194,7 +194,7 @@ module.exports = function(grunt) {
194
194
// Default task.
195
195
grunt . registerTask ( 'default' , [ 'before-test' , 'test' , 'after-test' ] ) ;
196
196
197
- grunt . registerTask ( 'enforce' , ' Install commit message enforce script if it doesn\ 't exist' , function ( ) {
197
+ grunt . registerTask ( 'enforce' , ` Install commit message enforce script if it doesn't exist` , function ( ) {
198
198
if ( ! grunt . file . exists ( '.git/hooks/commit-msg' ) ) {
199
199
grunt . file . copy ( 'misc/validate-commit-msg.js' , '.git/hooks/commit-msg' ) ;
200
200
require ( 'fs' ) . chmodSync ( '.git/hooks/commit-msg' , '0755' ) ;
@@ -227,22 +227,22 @@ module.exports = function(grunt) {
227
227
228
228
var module = {
229
229
name : name ,
230
- moduleName : enquote ( ' ui.bootstrap.' + name ) ,
230
+ moduleName : enquote ( ` ui.bootstrap.${ name } ` ) ,
231
231
displayName : ucwords ( breakup ( name , ' ' ) ) ,
232
- srcFiles : grunt . file . expand ( ' src/' + name + ' /*.js' ) ,
233
- cssFiles : grunt . file . expand ( ' src/' + name + ' /*.css' ) ,
234
- tplFiles : grunt . file . expand ( ' template/' + name + ' /*.html' ) ,
235
- tpljsFiles : grunt . file . expand ( ' template/' + name + ' /*.html.js' ) ,
236
- tplModules : grunt . file . expand ( ' template/' + name + ' /*.html' ) . map ( enquoteUibDir ) ,
232
+ srcFiles : grunt . file . expand ( ` src/${ name } /*.js` ) ,
233
+ cssFiles : grunt . file . expand ( ` src/${ name } /*.css` ) ,
234
+ tplFiles : grunt . file . expand ( ` template/${ name } /*.html` ) ,
235
+ tpljsFiles : grunt . file . expand ( ` template/${ name } /*.html.js` ) ,
236
+ tplModules : grunt . file . expand ( ` template/${ name } /*.html` ) . map ( enquoteUibDir ) ,
237
237
dependencies : dependenciesForModule ( name ) ,
238
238
docs : {
239
- md : grunt . file . expand ( ' src/' + name + ' /docs/*.md' )
239
+ md : grunt . file . expand ( ` src/${ name } /docs/*.md` )
240
240
. map ( grunt . file . read ) . map ( function ( str ) {
241
241
return marked ( str ) ;
242
242
} ) . join ( '\n' ) ,
243
- js : grunt . file . expand ( ' src/' + name + ' /docs/*.js' )
243
+ js : grunt . file . expand ( ` src/${ name } /docs/*.js` )
244
244
. map ( grunt . file . read ) . join ( '\n' ) ,
245
- html : grunt . file . expand ( ' src/' + name + ' /docs/*.html' )
245
+ html : grunt . file . expand ( ` src/${ name } /docs/*.html` )
246
246
. map ( grunt . file . read ) . join ( '\n' )
247
247
}
248
248
} ;
@@ -399,15 +399,15 @@ module.exports = function(grunt) {
399
399
var jsContent = versions . map ( function ( version ) {
400
400
return {
401
401
version : version ,
402
- url : ' /bootstrap/versioned-docs/' + version
402
+ url : ` /bootstrap/versioned-docs/${ version } `
403
403
} ;
404
404
} ) ;
405
405
jsContent . unshift ( {
406
406
version : 'Current' ,
407
407
url : '/bootstrap'
408
408
} ) ;
409
409
grunt . file . write ( versionsMappingFile , JSON . stringify ( jsContent ) ) ;
410
- grunt . log . writeln ( ' File ' + versionsMappingFile . cyan + ' created.' ) ;
410
+ grunt . log . writeln ( ` File ${ versionsMappingFile . cyan } created.` ) ;
411
411
done ( ) ;
412
412
} ) ;
413
413
@@ -422,7 +422,7 @@ module.exports = function(grunt) {
422
422
js ;
423
423
state . css . push ( css ) ;
424
424
425
- if ( minify ) {
425
+ if ( minify ) {
426
426
css = css
427
427
. replace ( / \r ? \n / g, '' )
428
428
. replace ( / \/ \* .* ?\* \/ / g, '' )
@@ -437,7 +437,7 @@ module.exports = function(grunt) {
437
437
. replace ( / \\ / g, '\\\\' )
438
438
. replace ( / ' / g, "\\'" )
439
439
. replace ( / \r ? \n / g, '\\n' ) ;
440
- js = " angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend('<style type=\ "text/css\">" + css + " </style>'); })" ;
440
+ js = ` angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend('<style type="text/css"> ${ css } </style>'); })` ;
441
441
state . js . push ( js ) ;
442
442
443
443
return state ;
0 commit comments