From 85810acf42a33f152a96ede6b087945126ea9bed Mon Sep 17 00:00:00 2001 From: prototypa Date: Wed, 8 May 2024 00:49:49 -0400 Subject: [PATCH] Fix integration name --- vendor/integration/index.mjs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/vendor/integration/index.mjs b/vendor/integration/index.mjs index 3cf09c0..20e8181 100644 --- a/vendor/integration/index.mjs +++ b/vendor/integration/index.mjs @@ -4,10 +4,10 @@ import os from 'node:os'; import configBuilder from './utils/configBuilder'; import loadConfig from './utils/loadConfig'; -const tasksIntegration = ({ config: _themeConfig = 'src/config.yaml' } = {}) => { +export default ({ config: _themeConfig = 'src/config.yaml' } = {}) => { let cfg; return { - name: 'AstroWind:tasks', + name: 'astrowind-integration', hooks: { 'astro:config:setup': async ({ @@ -111,6 +111,4 @@ const tasksIntegration = ({ config: _themeConfig = 'src/config.yaml' } = {}) => }, }, }; -}; - -export default tasksIntegration; +}; \ No newline at end of file