@aime-aatrick/create-fullstack-template 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -115,6 +115,10 @@ const main = async () => {
|
|
|
115
115
|
const emitter = degit(REPO, { cache: false, force: true, verbose: true });
|
|
116
116
|
await emitter.clone(targetDir);
|
|
117
117
|
|
|
118
|
+
// Remove template-maintenance folders that should not ship in generated apps.
|
|
119
|
+
await rm(join(targetDir, "create-fullstack-template"), { recursive: true, force: true });
|
|
120
|
+
await rm(join(targetDir, ".github"), { recursive: true, force: true });
|
|
121
|
+
|
|
118
122
|
if (mode === "backend") {
|
|
119
123
|
await rm(join(targetDir, "frontend"), { recursive: true, force: true });
|
|
120
124
|
} else if (mode === "frontend") {
|