create-prisma-php-app 1.23.7 → 1.23.8

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.
package/dist/index.js CHANGED
@@ -127,7 +127,7 @@ async function main() {
127
127
  "browser-sync",
128
128
  ];
129
129
  if (answer.swaggerDocs) {
130
- dependencies.push("swagger-jsdoc");
130
+ dependencies.push("swagger-jsdoc", "@types/swagger-jsdoc");
131
131
  }
132
132
  if (answer.tailwindcss) {
133
133
  dependencies.push(
@@ -57,7 +57,7 @@ export async function swaggerConfig(): Promise<void> {
57
57
  writeFileSync(outputPath, swaggerSpec, "utf-8");
58
58
  console.log(
59
59
  `Swagger JSON has been generated and saved to ${chalk.blue(
60
- "src/app/swagger-docs/pphp-swagger.json"
60
+ "src/app/swagger-docs/apis/pphp-swagger.json"
61
61
  )}`
62
62
  );
63
63
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prisma-php-app",
3
- "version": "1.23.7",
3
+ "version": "1.23.8",
4
4
  "description": "Prisma-PHP: A Revolutionary Library Bridging PHP with Prisma ORM",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",