From 89ddf177aa5e9001c6cc0a375f173c9ee7dfc812 Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Mon, 9 Oct 2023 09:16:42 +0200 Subject: [PATCH] Remove whitespace before semicolon when generating new package --- templates/plop-templates/component.ts.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/plop-templates/component.ts.hbs b/templates/plop-templates/component.ts.hbs index 766c5dc9e..5d3f2d449 100644 --- a/templates/plop-templates/component.ts.hbs +++ b/templates/plop-templates/component.ts.hbs @@ -23,6 +23,6 @@ export class {{className name}} extends LitElement { declare global { interface HTMLElementTagNameMap { - '{{> tagnamePartial }}': {{className name}} ; + '{{> tagnamePartial }}': {{className name}}; } }