Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
harttle committed Feb 18, 2020
1 parent d7fcf90 commit a9393b6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/models/san-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class SanProject {
tsConfigFilePath = getDefaultTSConfigPath(),
modules = {}
}: SanProjectOptions = {}) {
if (tsConfigFilePath) {}
this.tsConfigFilePath = tsConfigFilePath
if (tsConfigFilePath !== null) {
this.tsProject = new Project({ tsConfigFilePath })
Expand Down
1 change: 0 additions & 1 deletion src/target-js/compilers/anode-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ export class ANodeCompiler {
}

compileElement (aNode: ANode, emitter: JSEmitter) {
console.log('compileElement', aNode.tagName)
this.elementSourceCompiler.tagStart(emitter, aNode)
this.elementSourceCompiler.inner(emitter, aNode)
this.elementSourceCompiler.tagEnd(emitter, aNode)
Expand Down
1 change: 0 additions & 1 deletion src/target-js/compilers/element-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ export class ElementCompiler {
*/
tagEnd (emitter: JSEmitter, aNode: ANode, tagNameVariable?: string) {
const tagName = aNode.tagName
console.log('tagName', tagName, 'variable', tagNameVariable)

if (tagName) {
if (!autoCloseTags.has(tagName)) {
Expand Down

0 comments on commit a9393b6

Please sign in to comment.