File tree 1 file changed +2
-2
lines changed
packages/@css-blocks/broccoli/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,12 +94,12 @@ export class CSSBlocksAnalyze extends BroccoliPlugin {
94
94
FSTree . applyPatch ( input , output , nonBlockFileChanges ) ;
95
95
96
96
// When no entry points are passed, we treat *every* template as an entry point.
97
- this . entries = this . entries . length ? this . entries : glob . sync ( "**/*.hbs" , { cwd : input } ) ;
97
+ let entries = this . entries . length ? this . entries : glob . sync ( "**/*.hbs" , { cwd : input } ) ;
98
98
99
99
// Oh hey look, we're analyzing.
100
100
this . analyzer . reset ( ) ;
101
101
this . transport . reset ( ) ;
102
- await this . analyzer . analyze ( input , this . entries ) ;
102
+ await this . analyzer . analyze ( input , entries ) ;
103
103
104
104
// Compile all Blocks and add them as sources to the Optimizer.
105
105
// TODO: handle a sourcemap from compiling the block file via a preprocessor.
You can’t perform that action at this time.
0 commit comments