This commit is contained in:
Adam Matthiesen 2024-02-05 23:56:00 -08:00
parent 07c33faa49
commit caeeee2357
4 changed files with 83 additions and 14 deletions

View File

@ -278,9 +278,6 @@ export default function GhostCMS(options: UserConfig): AstroIntegration {
const logNpmVersion = logger.fork("astro-ghostcms/npm-pub-version"); const logNpmVersion = logger.fork("astro-ghostcms/npm-pub-version");
const logCheck = logger.fork("astro-ghostcms/check"); const logCheck = logger.fork("astro-ghostcms/check");
// CONFIG DONE
logConfigDone.info(IC.CONFSETUPDONE);
const pJSON = await fse.readJson( const pJSON = await fse.readJson(
path.resolve( path.resolve(
fileURLToPath(import.meta.url), "..", 'package.json') fileURLToPath(import.meta.url), "..", 'package.json')
@ -295,6 +292,8 @@ export default function GhostCMS(options: UserConfig): AstroIntegration {
logCheck.warn("Please consider updating."); logCheck.warn("Please consider updating.");
} }
// CONFIG DONE
logConfigDone.info(`${IC.CONFSETUPDONE} v${pkgVer}`);
} }
} }
} }

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.1.9-dev01", "version": "3.1.9-dev02",
"homepage": "https://astro-ghostcms.xyz/", "homepage": "https://astro-ghostcms.xyz/",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",

File diff suppressed because one or more lines are too long