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
I updated my project with typescript on version 0.16.10 of typedoc. I am using --mode file
I expected the library to work as with the previous version, so purging all helper functions that are not exported.
Actual Behavior
The problem is that now --excludeNotExported is not working any more and everything is included in the output.
Steps to reproduce the bug
To reproduce this bug, just run typedoc --out docs/html --mode file --plugin none --excludeNotExported --includeVersion --gaID $GA_TOKEN source/lib on a project with exported and not exported functions
Environment
Typedoc version: 0.16.10
Node.js version: 12.14.1
OS: ubuntu 18.04
The text was updated successfully, but these errors were encountered:
This is expected behavior with --mode file. In file mode you are telling TypeDoc to ignore that you are actually using modules and pretend everything is global.
Expected Behavior
I updated my project with typescript on version 0.16.10 of typedoc. I am using --mode file
I expected the library to work as with the previous version, so purging all helper functions that are not exported.
Actual Behavior
The problem is that now --excludeNotExported is not working any more and everything is included in the output.
Steps to reproduce the bug
To reproduce this bug, just run
typedoc --out docs/html --mode file --plugin none --excludeNotExported --includeVersion --gaID $GA_TOKEN source/lib
on a project with exported and not exported functionsEnvironment
The text was updated successfully, but these errors were encountered: