From 6c6991453f65c0fe1a0177e122a8ae64bc047600 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sun, 3 Aug 2025 02:16:02 +0200 Subject: [PATCH] cli/templates/new-frontend-plugin-module: fix package export + change to module.tsx Signed-off-by: Patrik Oldsberg --- .../cli/templates/new-frontend-plugin-module/src/index.ts.hbs | 2 +- .../src/{plugin.ts.hbs => module.tsx.hbs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/cli/templates/new-frontend-plugin-module/src/{plugin.ts.hbs => module.tsx.hbs} (100%) diff --git a/packages/cli/templates/new-frontend-plugin-module/src/index.ts.hbs b/packages/cli/templates/new-frontend-plugin-module/src/index.ts.hbs index 63ead4f9c9..aec3cb2b06 100644 --- a/packages/cli/templates/new-frontend-plugin-module/src/index.ts.hbs +++ b/packages/cli/templates/new-frontend-plugin-module/src/index.ts.hbs @@ -1 +1 @@ -export { {{ moduleVar }} } from './plugin'; +export { {{ moduleVar }} as default } from './plugin'; diff --git a/packages/cli/templates/new-frontend-plugin-module/src/plugin.ts.hbs b/packages/cli/templates/new-frontend-plugin-module/src/module.tsx.hbs similarity index 100% rename from packages/cli/templates/new-frontend-plugin-module/src/plugin.ts.hbs rename to packages/cli/templates/new-frontend-plugin-module/src/module.tsx.hbs