diff --git a/packages/astro-ghostcms/package.json b/packages/astro-ghostcms/package.json index e1834af9..c5758ba4 100644 --- a/packages/astro-ghostcms/package.json +++ b/packages/astro-ghostcms/package.json @@ -1,7 +1,7 @@ { "name": "@matthiesenxyz/astro-ghostcms", "description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content", - "version": "3.3.0-dev.1", + "version": "3.3.0", "homepage": "https://astro-ghostcms.xyz/", "type": "module", "license": "MIT", diff --git a/packages/astro-ghostcms/src/astro-ghostcms.ts b/packages/astro-ghostcms/src/astro-ghostcms.ts index a135c8fb..4187c9a6 100644 --- a/packages/astro-ghostcms/src/astro-ghostcms.ts +++ b/packages/astro-ghostcms/src/astro-ghostcms.ts @@ -44,7 +44,9 @@ export default defineIntegration({ injectRoute, logger, }) => { // Configure Loggers - const GhostLogger = logger.fork(c.bold(c.blue("👻 Astro-GhostCMS"))); + const GhostLogger = logger.fork( + c.bold(c.blue("👻 Astro-GhostCMS")) + ); const GhostENVLogger = logger.fork( `${c.bold(c.blue("👻 Astro-GhostCMS"))}${c.gray("/")}${c.blue( "ENV Check", diff --git a/playgrounds/astro-playground/astro.config.mjs b/playgrounds/astro-playground/astro.config.mjs index f889c932..faf7fac6 100644 --- a/playgrounds/astro-playground/astro.config.mjs +++ b/playgrounds/astro-playground/astro.config.mjs @@ -14,7 +14,7 @@ export default defineConfig({ ThemeProvider: { theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian", }, - fullConsoleLogs: true, + fullConsoleLogs: false, }), ], });