Skip to content

Commit 85072ea

Browse files
authored
add this._super call to included hook plugin doc
Not calling `this._super` in the `included` hook causes other build issues (at least when developing an addon) and seems to be the recommended practice in the docs as well: https://cli.emberjs.com/release/writing-addons/in-repo-addons/#broccolibuildoptionsforinrepoaddons
1 parent 6b69fef commit 85072ea

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ module.exports = {
8686
name: 'some-transform',
8787
plugin: SomeTransform
8888
});
89+
90+
this._super.included.apply(this, arguments);
8991
}
9092
};
9193
```

0 commit comments

Comments
 (0)