Merge Branch create-util #19

Merged
Adammatthiesen merged 62 commits from create-util into main 2024-01-28 09:42:14 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ff63666a5d - Show all commits

View File

@ -1,6 +1,6 @@
{ {
"name": "@matthiesenxyz/create-astro-ghostcms", "name": "@matthiesenxyz/create-astro-ghostcms",
"version": "0.0.1-dev39", "version": "0.0.1-dev40",
"description": "Utility to quickly get started with our Integration and astro", "description": "Utility to quickly get started with our Integration and astro",
"type": "module", "type": "module",
"main": "./create-astro-ghostcms.mjs", "main": "./create-astro-ghostcms.mjs",

View File

@ -46,7 +46,7 @@ export async function main() {
} }
const { pathname } = getModulePaths(import.meta.url); const { pathname } = getModulePaths(import.meta.url);
const inputJSON = path.resolve(pathname, "..", 'package.json'); const inputJSON = path.resolve(pathname, "..", "..", 'package.json');
const packageJSON = await fse.readJson(inputJSON); const packageJSON = await fse.readJson(inputJSON);
const pkgVer = packageJSON.version; const pkgVer = packageJSON.version;