Skip to content

Commit b8b455b

Browse files
committed
Remove accidental console.log statements
1 parent 4936227 commit b8b455b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typedoc-plugin-typescript-declaration",
3-
"version": "0.2.11",
3+
"version": "0.2.12",
44
"description": "Typedoc plugin to render to typescript declaration file",
55
"main": "dist/index.js",
66
"bin": {

src/remove-source-plugin.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ export class RemoveSourcePlugin extends ConverterComponent {
2727
private onEndResolve(context: Context) {
2828
if (this._removeSource) {
2929
Object.values(context.project.reflections).forEach(reflection => {
30-
console.log('removing', reflection.sources?.length);
3130
reflection.sources = undefined;
32-
console.log('removed');
3331
});
3432
}
3533
}

0 commit comments

Comments
 (0)