From 79997e048d9faf1b728c459643d1a47234258e61 Mon Sep 17 00:00:00 2001 From: Manuel Serret Date: Fri, 15 Nov 2024 16:04:17 +0100 Subject: [PATCH] add addon template --- community-addon-template/src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/community-addon-template/src/index.js b/community-addon-template/src/index.js index 5882006f..fffb44b8 100644 --- a/community-addon-template/src/index.js +++ b/community-addon-template/src/index.js @@ -12,6 +12,7 @@ export const options = defineAddonOptions({ export default defineAddon({ id: 'community-addon', + shortDescription: 'addon template', options, setup: ({ kit, unsupported }) => { if (!kit) unsupported('Requires SvelteKit');