create-prisma-php-app 2.3.27 → 2.3.28
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
|
@@ -55,22 +55,22 @@ async function installComposerDependencies(baseDir, dependencies) {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
const npmPinnedVersions = {
|
|
58
|
-
"@tailwindcss/postcss": "^4.1.
|
|
58
|
+
"@tailwindcss/postcss": "^4.1.7",
|
|
59
59
|
"@types/browser-sync": "^2.29.0",
|
|
60
|
-
"@types/node": "^22.15.
|
|
60
|
+
"@types/node": "^22.15.19",
|
|
61
61
|
"@types/prompts": "^2.4.9",
|
|
62
62
|
"browser-sync": "^3.0.4",
|
|
63
63
|
chalk: "^5.4.1",
|
|
64
64
|
"chokidar-cli": "^3.0.0",
|
|
65
|
-
cssnano: "^7.0.
|
|
65
|
+
cssnano: "^7.0.7",
|
|
66
66
|
"http-proxy-middleware": "^3.0.5",
|
|
67
67
|
"npm-run-all": "^4.1.5",
|
|
68
68
|
"php-parser": "^3.2.3",
|
|
69
69
|
postcss: "^8.5.3",
|
|
70
70
|
"postcss-cli": "^11.0.1",
|
|
71
71
|
prompts: "^2.4.2",
|
|
72
|
-
tailwindcss: "^4.1.
|
|
73
|
-
tsx: "^4.19.
|
|
72
|
+
tailwindcss: "^4.1.7",
|
|
73
|
+
tsx: "^4.19.4",
|
|
74
74
|
typescript: "^5.8.3",
|
|
75
75
|
};
|
|
76
76
|
function npmPkg(name) {
|
|
@@ -249,7 +249,7 @@ class TemplateCompiler
|
|
|
249
249
|
if (preg_match('/^[\w.]+$/u', $expr)) {
|
|
250
250
|
return "<span pp-bind=\"{$expr}\"></span>";
|
|
251
251
|
}
|
|
252
|
-
return "<span pp-bind-expr=\"
|
|
252
|
+
return "<span pp-bind-expr=\"{$expr}\"></span>";
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
protected static function renderComponent(DOMElement $node, string $componentName, array $incomingProps): string
|