chore(create-medusa-app): remove .github directory (#7473)

As we're adding some actions to the starter, it doesn't make sense to keep them in the cloned projects with `create-medusa-app`. This PR removes the `.github` directory from the project after cloning it
This commit is contained in:
Shahed Nasser
2024-05-27 15:43:49 +03:00
committed by GitHub
parent 98615c388b
commit 639758ffec

View File

@@ -72,4 +72,9 @@ function deleteGitDirectory(projectDirectory: string) {
recursive: true, recursive: true,
force: true, force: true,
}) })
fs.rmSync(path.join(projectDirectory, ".github"), {
recursive: true,
force: true,
})
} }