Merge Branch create-util #19
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@matthiesenxyz/create-astro-ghostcms",
|
||||
"version": "0.0.1-dev27",
|
||||
"version": "0.0.1-dev28",
|
||||
"description": "Utility to quickly get started with our Integration and astro",
|
||||
"type": "module",
|
||||
"main": "./create-astro-ghostcms.mjs",
|
||||
|
|
|
@ -119,12 +119,8 @@ async function createApp(projectName, projectPathname, { onError }) {
|
|||
// Copy misc files from shared
|
||||
const filesToCopy = [
|
||||
{
|
||||
src: path.join(sharedTemplateDir, ".env"),
|
||||
dest: path.join(projectPathname, ".env"),
|
||||
},
|
||||
{
|
||||
src: path.join(sharedTemplateDir, ".gitignore"),
|
||||
dest: path.join(projectPathname, ".gitignore"),
|
||||
src: path.join(sharedTemplateDir),
|
||||
dest: path.join(projectPathname),
|
||||
},
|
||||
];
|
||||
await Promise.all(
|
||||
|
|
|
@ -119,12 +119,8 @@ async function createApp(projectName, projectPathname, { onError }) {
|
|||
// Copy misc files from shared
|
||||
const filesToCopy = [
|
||||
{
|
||||
src: path.join(sharedTemplateDir, ".env"),
|
||||
dest: path.join(projectPathname, ".env"),
|
||||
},
|
||||
{
|
||||
src: path.join(sharedTemplateDir, ".gitignore"),
|
||||
dest: path.join(projectPathname, ".gitignore"),
|
||||
src: path.join(sharedTemplateDir),
|
||||
dest: path.join(projectPathname),
|
||||
},
|
||||
];
|
||||
await Promise.all(
|
||||
|
|
Loading…
Reference in New Issue