Skip to content

Commit

Permalink
fix: remove rogue console.log (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored May 14, 2024
1 parent 7317a41 commit 9d8e7c3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/module-declaration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ export const generateModuleDeclaration = (
) {
extendsInfo = ` extends ${isClass ? 'NodeEventEmitter' : 'NodeJS.EventEmitter'}`;
}
if (module.name.toLowerCase() === 'session' && isStaticVersion) {
console.log({ isStaticVersion, instanceModuleForStaticVersion, extendsInfo });
}
if (extendsInfo) {
moduleAPI.push(
`${isClass ? 'class' : 'interface'} ${_.upperFirst(module.name)}${extendsInfo} {`,
Expand Down

0 comments on commit 9d8e7c3

Please sign in to comment.