Skip to content

Commit 9b8f73c

Browse files
committedMar 7, 2020
fix: Glimmer apps have a different naming system.
1 parent f2e3d5c commit 9b8f73c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎packages/@css-blocks/broccoli/src/Analyze.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class CSSBlocksAnalyze extends BroccoliPlugin {
7272
let blockCompiler = new BlockCompiler(postcss, options);
7373
let optimizer = new Optimizer(this.optimizationOptions, this.analyzer.optimizationOptions);
7474

75-
let isBlockFile = minimatch.makeRe("**/*.block.*");
75+
let isBlockFile = minimatch.makeRe("**/{*.block.*,stylesheet.*}");
7676

7777
// Test if anything has changed since last time. If not, skip all analysis work.
7878
let newFsTree = FSTree.fromEntries(walkSync.entries(input));

0 commit comments

Comments
 (0)
Please sign in to comment.