This commit is contained in:
Adam Matthiesen 2024-01-28 20:47:09 -08:00
parent 58dd1d2bf6
commit e94e882d88
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -3,7 +3,7 @@ import arg from "arg";
import fse from "fs-extra";
import * as p from "@clack/prompts";
import c from 'picocolors';
import { exitPrompt, getModulePaths, isPackageManager } from "./utils";
import { exitPrompt, getModulePaths, isPackageManager } from "./utils/index.js";
import { createBasic } from "./scripts/basic.js";
//import { createStarterKit } from "./scripts/starterkit.js";

View File

@ -4,7 +4,7 @@ import c from 'picocolors';
import * as p from "@clack/prompts";
import { execa } from "execa";
import { exitPrompt, getModulePaths, isPathname,
normalizePath, wait } from "../utils";
normalizePath, wait } from "../utils/index.js";
//const runnerName = "basic";

View File

@ -4,7 +4,7 @@ import c from 'picocolors';
import * as p from "@clack/prompts";
import { execa } from "execa";
import { exitPrompt, getModulePaths, isPathname,
normalizePath, wait } from "../utils";
normalizePath, wait } from "../utils/index.js";
const runnerName = "starterkit";