create-prisma-php-app 3.6.0 → 3.6.1

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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prisma-php-app",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Prisma-PHP: A Revolutionary Library Bridging PHP with Prisma ORM",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",