create-payload-app 0.5.0-beta.5 → 0.5.0-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lib/select-db.js +1 -1
- package/dist/main.js +1 -0
- package/package.json +1 -1
package/dist/lib/select-db.js
CHANGED
@@ -94,7 +94,7 @@ function selectDb(args, projectName) {
|
|
94
94
|
return [4 /*yield*/, (0, prompts_1.default)({
|
95
95
|
type: 'text',
|
96
96
|
name: 'value',
|
97
|
-
message: "Enter ".concat(dbChoice.title, " connection string"),
|
97
|
+
message: "Enter ".concat(dbChoice.title.split(' ')[0], " connection string"),
|
98
98
|
initial: "".concat(dbChoice.dbConnectionPrefix).concat(projectName === '.'
|
99
99
|
? "payload-".concat(getRandomDigitSuffix())
|
100
100
|
: (0, slugify_1.default)(projectName)),
|
package/dist/main.js
CHANGED