create-prisma-php-app 4.0.0-alpha.28 → 4.0.0-alpha.29
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.
|
@@ -5,6 +5,7 @@ import { getFileMeta } from "./utils.js";
|
|
|
5
5
|
import { promises as fsPromises } from "fs";
|
|
6
6
|
import { updateAllClassLogs } from "./class-log";
|
|
7
7
|
import { updateComponentImports } from "./class-imports";
|
|
8
|
+
import { generateFileListJson } from "./files-list";
|
|
8
9
|
|
|
9
10
|
const { __dirname } = getFileMeta();
|
|
10
11
|
|
|
@@ -147,6 +148,7 @@ export const dirsToDelete = [
|
|
|
147
148
|
join(__dirname, "..", ".pphp"),
|
|
148
149
|
];
|
|
149
150
|
|
|
151
|
+
await generateFileListJson();
|
|
150
152
|
await deleteFilesIfExist(filesToDelete);
|
|
151
153
|
await deleteDirectoriesIfExist(dirsToDelete);
|
|
152
154
|
await updateAllClassLogs();
|