aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-06 22:48:18 +0800
committerFabio Berger <me@fabioberger.com>2018-08-06 22:48:18 +0800
commitff3c77f7c47475d77defecfeb894a8c86c003997 (patch)
tree3d3c1b6c80557ca628bc15f868dffcb106addd56 /packages/react-docs
parent4527e9ce000d3eafcd55552df0809ea31271ba89 (diff)
downloaddexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.gz
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.bz2
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.lz
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.xz
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.zst
dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.zip
Remove stray console.lgos
Diffstat (limited to 'packages/react-docs')
-rw-r--r--packages/react-docs/src/docs_info.ts1
-rw-r--r--packages/react-docs/src/utils/typedoc_utils.ts4
2 files changed, 0 insertions, 5 deletions
diff --git a/packages/react-docs/src/docs_info.ts b/packages/react-docs/src/docs_info.ts
index 36a6a7301..4267d8a98 100644
--- a/packages/react-docs/src/docs_info.ts
+++ b/packages/react-docs/src/docs_info.ts
@@ -86,7 +86,6 @@ export class DocsInfo {
];
}
});
- console.log('menuSubsectionsBySection', menuSubsectionsBySection);
return menuSubsectionsBySection;
}
public getTypeDefinitionsByName(docAgnosticFormat: DocAgnosticFormat): { [name: string]: TypeDefinitionByName } {
diff --git a/packages/react-docs/src/utils/typedoc_utils.ts b/packages/react-docs/src/utils/typedoc_utils.ts
index b1d9850ef..01385c982 100644
--- a/packages/react-docs/src/utils/typedoc_utils.ts
+++ b/packages/react-docs/src/utils/typedoc_utils.ts
@@ -259,7 +259,6 @@ export const typeDocUtils = {
throw errorUtils.spawnSwitchErr('kindString', entity.kindString);
}
});
- console.log('docSection', docSection);
return docSection;
},
_convertCustomType(entity: TypeDocNode, sections: SectionsMap, sectionName: string, docId: string): CustomType {
@@ -352,9 +351,6 @@ export const typeDocUtils = {
sectionName: string,
docId: string,
): TypescriptMethod {
- if (_.isUndefined(entity.signatures)) {
- console.log(entity);
- }
const signature = entity.signatures[0];
const source = entity.sources[0];
const hasComment = !_.isUndefined(signature.comment);