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",
"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",

View File

@ -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",

View File

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