We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 313d478 commit 3734f03Copy full SHA for 3734f03
addon.js
@@ -48,15 +48,15 @@ module.exports = {
48
const appOptions = this.app && this.app.options;
49
const addonOptions = parentOptions || appOptions || {};
50
51
- return addonOptions['ember-hbs-imports'] || {
+ return Object.assign({
52
style: {
53
extension: 'scss',
54
plugins: {
55
before: [],
56
after: []
57
}
58
59
- };
+ }, addonOptions['ember-hbs-imports']);
60
},
61
62
_getBabelOptions() {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ember-hbs-imports",
3
- "version": "1.0.1",
+ "version": "1.0.2",
4
"repository": {
5
"type": "git",
6
"url": "https://github.com/patricklx/ember-hbs-imports"
0 commit comments