update. More progress and nothing has broken

This commit is contained in:
Adam Matthiesen 2024-03-03 10:41:41 -08:00
parent 302af0f7b6
commit 4288cbe1ac
3 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "@matthiesenxyz/astro-ghostcms", "name": "@matthiesenxyz/astro-ghostcms",
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content", "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/", "homepage": "https://astro-ghostcms.xyz/",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",

View File

@ -44,7 +44,9 @@ export default defineIntegration({
injectRoute, logger, injectRoute, logger,
}) => { }) => {
// Configure Loggers // 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( const GhostENVLogger = logger.fork(
`${c.bold(c.blue("👻 Astro-GhostCMS"))}${c.gray("/")}${c.blue( `${c.bold(c.blue("👻 Astro-GhostCMS"))}${c.gray("/")}${c.blue(
"ENV Check", "ENV Check",

View File

@ -14,7 +14,7 @@ export default defineConfig({
ThemeProvider: { ThemeProvider: {
theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian", theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian",
}, },
fullConsoleLogs: true, fullConsoleLogs: false,
}), }),
], ],
}); });