Skip to content

Commit 3734f03

Browse files
committed
fix addon options
1 parent 313d478 commit 3734f03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

addon.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ module.exports = {
4848
const appOptions = this.app && this.app.options;
4949
const addonOptions = parentOptions || appOptions || {};
5050

51-
return addonOptions['ember-hbs-imports'] || {
51+
return Object.assign({
5252
style: {
5353
extension: 'scss',
5454
plugins: {
5555
before: [],
5656
after: []
5757
}
5858
}
59-
};
59+
}, addonOptions['ember-hbs-imports']);
6060
},
6161

6262
_getBabelOptions() {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-hbs-imports",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/patricklx/ember-hbs-imports"

0 commit comments

Comments
 (0)