From 85072ea9e1a3ea1ce0d56539ba273dde87ead9ff Mon Sep 17 00:00:00 2001 From: Stanley Stuart Date: Mon, 13 Sep 2021 10:08:30 -0700 Subject: [PATCH] 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 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3fba3657..7456b6e1 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,8 @@ module.exports = { name: 'some-transform', plugin: SomeTransform }); + + this._super.included.apply(this, arguments); } }; ```