Merge Branch create-util #19
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@matthiesenxyz/create-astro-ghostcms",
|
"name": "@matthiesenxyz/create-astro-ghostcms",
|
||||||
"version": "0.0.1-dev28",
|
"version": "0.0.1-dev29",
|
||||||
"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",
|
||||||
|
|
|
@ -119,8 +119,8 @@ async function createApp(projectName, projectPathname, { onError }) {
|
||||||
// Copy misc files from shared
|
// Copy misc files from shared
|
||||||
const filesToCopy = [
|
const filesToCopy = [
|
||||||
{
|
{
|
||||||
src: path.join(sharedTemplateDir),
|
src: path.join(sharedTemplateDir, "./"),
|
||||||
dest: path.join(projectPathname),
|
dest: path.join(projectPathname, "./"),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
|
|
|
@ -119,8 +119,8 @@ async function createApp(projectName, projectPathname, { onError }) {
|
||||||
// Copy misc files from shared
|
// Copy misc files from shared
|
||||||
const filesToCopy = [
|
const filesToCopy = [
|
||||||
{
|
{
|
||||||
src: path.join(sharedTemplateDir),
|
src: path.join(sharedTemplateDir, "./"),
|
||||||
dest: path.join(projectPathname),
|
dest: path.join(projectPathname, "./"),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
|
|
Loading…
Reference in New Issue