You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to use module names with dots (to seperate them in root and submodules) I get the following error sometimes:
...GroupPlugin.js:89
str = str.replace(/(.)([A-Z])/g, (m, a, b) => a + ' ' + b.toLowerCase());
^
TypeError: Cannot read property 'replace' of undefined
at Function.getKindString ...\node_modules\typedoc\dist\lib\converter\plugins\GroupPlugin.js:89:19)
at Function.getKindSingular ...\node_modules\typedoc\dist\lib\converter\plugins\GroupPlugin.js:97:34)
at GroupPlugin.onResolve ...\node_modules\typedoc\dist\lib\converter\plugins\GroupPlugin.js:22:47)
at triggerEvents ...\node_modules\typedoc\dist\lib\utils\events.js:133:43)
at triggerApi ...\node_modules\typedoc\dist\lib\utils\events.js:110:13)
at eventsApi ...\node_modules\typedoc\dist\lib\utils\events.js:21:18)
at Converter.trigger ...\node_modules\typedoc\dist\lib\utils\events.js:264:13)
at Converter.resolve ...\node_modules\typedoc\dist\lib\converter\converter.js:170:18)
at Converter.convert ...\node_modules\typedoc\dist\lib\converter\converter.js:91:30)
at CliApplication.convert ...\mtsm-webapp\node_modules\typedoc\dist\lib\application.js:70:39)
I think this has something to do with the order in which the files are processed. for example, If I create the following files:
Then everything works as expected. If I change the order of the module declerations (i.e. foo.bar in A1 and foo in A2) the error mentioned above occurs.
The text was updated successfully, but these errors were encountered:
If I try to use module names with dots (to seperate them in root and submodules) I get the following error sometimes:
I think this has something to do with the order in which the files are processed. for example, If I create the following files:
A1.ts
A2.ts
Then everything works as expected. If I change the order of the module declerations (i.e. foo.bar in A1 and foo in A2) the error mentioned above occurs.
The text was updated successfully, but these errors were encountered: