We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04a9da2 commit dfa90dcCopy full SHA for dfa90dc
packages/@css-blocks/ember-app/src/index.ts
@@ -203,16 +203,11 @@ const EMBER_ADDON: AddonImplementation<CSSBlocksApplicationAddon> = {
203
}
204
205
// Merge default concat options with the options provided by the app.
206
- let concatOptions: BroccoliConcatOptions;
207
- if (env.config.broccoliConcat) {
208
- concatOptions = Object.assign(
209
- {},
210
- buildDefaultBroccoliConcatOptions(env),
211
- env.config.broccoliConcat,
212
- );
213
- } else {
214
- concatOptions = buildDefaultBroccoliConcatOptions(env);
215
- }
+ let concatOptions: BroccoliConcatOptions = Object.assign(
+ {},
+ buildDefaultBroccoliConcatOptions(env),
+ env.config.broccoliConcat || {},
+ );
216
217
// Create the concatenated file...
218
const concatTree = broccoliConcat(
0 commit comments