Skip to content

Commit

Permalink
fix: fix semi for esm template
Browse files Browse the repository at this point in the history
  • Loading branch information
yarastqt committed Apr 21, 2020
1 parent dc76a6d commit 4be9cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function esmTemplate(tokens: FlattenToken[]): string {
if (token.comment !== undefined) {
result += `// ${token.comment}\n`
}
result += `export const ${token.name} = '${token.value};'\n`
result += `export const ${token.name} = '${token.value}';\n`
}
return result
}

0 comments on commit 4be9cce

Please sign in to comment.