create-prisma-php-app 1.26.533 → 1.26.534
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 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -126,7 +126,6 @@ async function main() {
|
|
|
126
126
|
"npm-run-all",
|
|
127
127
|
"browser-sync",
|
|
128
128
|
"@types/browser-sync",
|
|
129
|
-
"@jridgewell/gen-mapping",
|
|
130
129
|
];
|
|
131
130
|
if (answer.swaggerDocs) {
|
|
132
131
|
dependencies.push("swagger-jsdoc", "@types/swagger-jsdoc");
|
|
@@ -140,7 +139,8 @@ async function main() {
|
|
|
140
139
|
"autoprefixer",
|
|
141
140
|
"postcss",
|
|
142
141
|
"postcss-cli",
|
|
143
|
-
"cssnano"
|
|
142
|
+
"cssnano",
|
|
143
|
+
"@jridgewell/gen-mapping"
|
|
144
144
|
);
|
|
145
145
|
}
|
|
146
146
|
if (answer.websocket) {
|
|
@@ -254,7 +254,8 @@ async function main() {
|
|
|
254
254
|
"autoprefixer",
|
|
255
255
|
"postcss",
|
|
256
256
|
"postcss-cli",
|
|
257
|
-
"cssnano"
|
|
257
|
+
"cssnano",
|
|
258
|
+
"@jridgewell/gen-mapping"
|
|
258
259
|
);
|
|
259
260
|
}
|
|
260
261
|
if (!updateAnswer.websocket) {
|