Skip to content

Commit

Permalink
fix: remove console log comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Dec 20, 2024
1 parent fc72d8b commit fd96caf
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/svelte-template-compiler/src/transforms/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,6 @@ function transformNativeElement(
// template += ` ${scopeId}`
// }

// console.log('transformElement building template ...', tag, JSON.stringify(propsResult))

let staticProps = false
const dynamicProps: string[] = []
if (propsResult[0] /* dynamic props */) {
Expand Down Expand Up @@ -249,8 +247,6 @@ function transformNativeElement(
template += `</${tag}>`
}

// console.log('transformElement exit', tag, template, context.childrenTemplate)

if (
context.parent &&
context.parent.node.type === 'Element' &&
Expand Down Expand Up @@ -350,7 +346,6 @@ export function buildProps(
}

const result = transformProp(prop, node, context)
// console.log('transformProp', prop, result)

if (result) {
dynamicExpr.push(result.key, result.value)
Expand Down

0 comments on commit fd96caf

Please sign in to comment.