We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59cc179 commit fcfae7bCopy full SHA for fcfae7b
index.js
@@ -8,15 +8,21 @@ const DEFAULT_PAGE_TITLE = 'Upfluence Software';
8
9
module.exports = {
10
name: require('./package').name,
11
+
12
options: {
13
'@embroider/macros': {
14
setOwnConfig: {
15
brand: process.env.BRAND || DEFAULT_BRAND,
16
brandPageTitle: process.env.BRAND_PAGE_TITLE || DEFAULT_PAGE_TITLE
17
}
- },
18
- babel: {
19
- plugins: [...require('ember-cli-code-coverage').buildBabelPlugin()],
+ }
+ },
20
21
+ included(parent) {
22
+ this._super.included.apply(this, arguments);
23
24
+ if (parent.name === 'dummy') {
25
+ this.options.babel.plugins.push(...require('ember-cli-code-coverage').buildBabelPlugin());
26
27
},
28
0 commit comments