Decorator is not a function error
Hi folks,
Building works fine, but as soon as I want to visit the docs page I get the following error:

Current setup:
"ember-cli": "3.28.5",
"ember-data": "3.28.10",
"ember-cli-addon-docs": "5.0.0",
"highlight.js": "11.6.0"
After downgrading to the following deps it works fine again:
"ember-cli-addon-docs": "4.2.2",
"highlight.js": "10.7.2"
The error hint to tracked-toolbox didn't :bulb: me so far. Tried to update my "tracked-toolbox" dep to "^2.0.0" and also with the old "^1.2.3" setup - still the same error.
Do you guys have any clue what went wrong?
I could fix it in our monorepo with the following resolution:
"resolutions": {
"**/tracked-toolbox": "^1.2.3"
},
Tried updating to "tracked-toolbox": "^2.0.0" in all sub-packages as well (without the resolution ofc), but it would not fix the issue. So I reset them to ^1.2.3 and put the resolution in place.
We have a dependency on tracked-toolbox v2, so I would expect you need to have everything on 2.x for it to work.
Works now with tracked-toolbox: ^2.0.0 and ember-cli-addon-docs: ^6.0.2. Thx