File tree Expand file tree Collapse file tree
transforms/angle-brackets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,6 +217,11 @@ function shouldSkipFile(fileInfo, config) {
217217}
218218
219219function transform ( fileInfo , config ) {
220+ config . helpers = config . helpers || [ ] ;
221+ config . skipBuiltInComponents =
222+ 'skipBuiltInComponents' in config ? config . skipBuiltInComponents : false ;
223+ config . skipFilesThatMatchRegex = config . skipFilesThatMatchRegex || null ;
224+
220225 if ( shouldSkipFile ( fileInfo , config ) ) {
221226 return fileInfo . source ;
222227 }
@@ -490,11 +495,7 @@ function transform(fileInfo, config) {
490495}
491496
492497function getOptions ( ) {
493- let options = {
494- helpers : [ ] ,
495- skipBuiltInComponents : false ,
496- skipFilesThatMatchRegex : null ,
497- } ;
498+ let options = { } ;
498499
499500 let cliOptions = getCLIOptions ( ) ;
500501 if ( cliOptions . config ) {
You can’t perform that action at this time.
0 commit comments