Skip to content

Commit a663364

Browse files
committed
fix: Prune css-blocks.css from the output after concatenating it.
1 parent 0842bbc commit a663364

File tree

1 file changed

+3
-1
lines changed
  • packages/@css-blocks/ember-app/src

1 file changed

+3
-1
lines changed

packages/@css-blocks/ember-app/src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ const EMBER_ADDON: AddonImplementation<CSSBlocksApplicationAddon> = {
209209
);
210210

211211
// Then overwrite the original file with our final build artifact.
212-
const mergedTree = mergeTrees([tree, concatTree], { overwrite: true });
212+
const mergedTree = funnel(mergeTrees([tree, concatTree], { overwrite: true }), {
213+
exclude: [`assets/${env.config.output}`],
214+
});
213215
return new BroccoliDebug(mergedTree, "css-blocks:css-postprocess");
214216
}
215217

0 commit comments

Comments
 (0)