create-prisma-php-app 1.20.500 → 1.20.501
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 +4 -2
- package/dist/src/app/swagger-docs/index.php +0 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -293,7 +293,7 @@ function copyRecursiveSync(src, dest, answer) {
|
|
|
293
293
|
}
|
|
294
294
|
if (
|
|
295
295
|
answer.backendOnly &&
|
|
296
|
-
|
|
296
|
+
nonBackendFiles.some((file) => dest.includes(file))
|
|
297
297
|
) {
|
|
298
298
|
return;
|
|
299
299
|
}
|
|
@@ -921,12 +921,14 @@ async function main() {
|
|
|
921
921
|
"@types/node",
|
|
922
922
|
"ts-node",
|
|
923
923
|
"http-proxy-middleware@^3.0.0",
|
|
924
|
-
"npm-run-all",
|
|
925
924
|
"chalk",
|
|
926
925
|
];
|
|
927
926
|
if (answer.swaggerDocs) {
|
|
928
927
|
dependencies.push("swagger-jsdoc");
|
|
929
928
|
}
|
|
929
|
+
if (!answer.backendOnly && !answer.swaggerDocs) {
|
|
930
|
+
dependencies.push("npm-run-all");
|
|
931
|
+
}
|
|
930
932
|
if (answer.tailwindcss) {
|
|
931
933
|
dependencies.push(
|
|
932
934
|
"tailwindcss",
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
use Lib\Auth\Auth;
|
|
4
|
-
|
|
5
|
-
$auth = Auth::getInstance();
|
|
6
|
-
|
|
7
|
-
// if (!$auth->isAuthenticated()) {
|
|
8
|
-
// redirect('/');
|
|
9
|
-
// }
|
|
10
|
-
|
|
11
|
-
?>
|
|
12
|
-
|
|
13
1
|
<div id="swagger-ui"></div>
|
|
14
2
|
<script src="<?= $baseUrl ?>swagger-docs/dist/swagger-ui-bundle.js" charset="UTF-8"> </script>
|
|
15
3
|
<script src="<?= $baseUrl ?>swagger-docs/dist/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
|