We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4936227 commit b8b455bCopy full SHA for b8b455b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "typedoc-plugin-typescript-declaration",
3
- "version": "0.2.11",
+ "version": "0.2.12",
4
"description": "Typedoc plugin to render to typescript declaration file",
5
"main": "dist/index.js",
6
"bin": {
src/remove-source-plugin.ts
@@ -27,9 +27,7 @@ export class RemoveSourcePlugin extends ConverterComponent {
27
private onEndResolve(context: Context) {
28
if (this._removeSource) {
29
Object.values(context.project.reflections).forEach(reflection => {
30
- console.log('removing', reflection.sources?.length);
31
reflection.sources = undefined;
32
- console.log('removed');
33
});
34
}
35
0 commit comments