From 5d1ad8808be80da439a859ba02671b49a0013d68 Mon Sep 17 00:00:00 2001 From: titanism <101466223+titanism@users.noreply.github.com> Date: Mon, 13 Jun 2022 14:46:45 -0500 Subject: [PATCH] docs: fixed note for upgrading plugins --- UPGRADING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UPGRADING.md b/UPGRADING.md index e9b4119..2c69cf4 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -64,7 +64,8 @@ Bree.prototype.init = function () { this.config.acceptedExtensions.push('.ts'); - oldInit.bind(this)(); -+ return oldInit.bind(this)(); ++ // note it is not invoked anymore and we now return it ++ return oldInit.bind(this); }; ```