We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 830b1c4 commit 2ed9b8dCopy full SHA for 2ed9b8d
1 file changed
scripts/cleanup.ts
@@ -36,7 +36,9 @@ const removeTheCleanupFromPackageJsonAndScripts = async () => {
36
await fs.unlink("scripts/cleanup.ts");
37
};
38
39
-removeAllReadmeFromApp(appDirectory).then(() => {
+removeAllReadmeFromApp(appDirectory).then(async () => {
40
+ await fs.unlink("scripts/README.md");
41
+ await fs.unlink("remix/README.md");
42
console.log(
43
chalk.green("All README.md files are removed from app directory")
44
);
0 commit comments