@hexabot-ai/cli 3.2.2-alpha.5 → 3.2.2-alpha.7
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/commands/create.js
CHANGED
|
@@ -171,7 +171,7 @@ const promptSeedAdminCredentials = async () => {
|
|
|
171
171
|
validate: validateEmail,
|
|
172
172
|
})).trim();
|
|
173
173
|
const adminPassword = await password({
|
|
174
|
-
message: 'Password (min
|
|
174
|
+
message: 'Password (min 8 chars)',
|
|
175
175
|
mask: '*',
|
|
176
176
|
validate: validateAdminPassword,
|
|
177
177
|
});
|
package/package.json
CHANGED
package/src/commands/create.ts
CHANGED
|
@@ -258,7 +258,7 @@ const promptSeedAdminCredentials = async (): Promise<AdminSeedCredentials> => {
|
|
|
258
258
|
})
|
|
259
259
|
).trim();
|
|
260
260
|
const adminPassword = await password({
|
|
261
|
-
message: 'Password (min
|
|
261
|
+
message: 'Password (min 8 chars)',
|
|
262
262
|
mask: '*',
|
|
263
263
|
validate: validateAdminPassword,
|
|
264
264
|
});
|