opticore-installer 1.2.51 → 1.2.53
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.cjs +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -47,7 +47,7 @@ var UWelcomeMessage = () => {
|
|
|
47
47
|
console.log(` ${orange("OPTICORE F R A M E W O R K I N S T A L L E R")}`);
|
|
48
48
|
console.log(` ${dim("Create \xB7 Configure \xB7 Deploy")}
|
|
49
49
|
`);
|
|
50
|
-
console.log(` ${import_chalk.default.bold.dim("Documentation")} ${import_chalk.default.underline.cyan("https://github.com/opticore
|
|
50
|
+
console.log(` ${import_chalk.default.bold.dim("Documentation")} ${import_chalk.default.underline.cyan("https://github.com/guyzoum77/opticore-installer")}
|
|
51
51
|
`);
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -292,7 +292,7 @@ var SPromptsDBCredentials = class {
|
|
|
292
292
|
CDbNameLabel.placeholderDBUser,
|
|
293
293
|
CDbNameLabel.dbUserInvalidValue,
|
|
294
294
|
CDbNameLabel.dbUserBadPattern,
|
|
295
|
-
"
|
|
295
|
+
"^.+$",
|
|
296
296
|
this.projectPath
|
|
297
297
|
);
|
|
298
298
|
if (user instanceof Function) {
|
|
@@ -351,7 +351,7 @@ var SPromptsDBCredentials = class {
|
|
|
351
351
|
CDbNameLabel.placeholderDBName,
|
|
352
352
|
CDbNameLabel.dbNameInvalidValue,
|
|
353
353
|
CDbNameLabel.dbNameBadPattern,
|
|
354
|
-
"
|
|
354
|
+
"^.+$",
|
|
355
355
|
this.projectPath
|
|
356
356
|
);
|
|
357
357
|
if (dbName instanceof Function) {
|
package/dist/index.js
CHANGED
|
@@ -24,7 +24,7 @@ var UWelcomeMessage = () => {
|
|
|
24
24
|
console.log(` ${orange("OPTICORE F R A M E W O R K I N S T A L L E R")}`);
|
|
25
25
|
console.log(` ${dim("Create \xB7 Configure \xB7 Deploy")}
|
|
26
26
|
`);
|
|
27
|
-
console.log(` ${chalk.bold.dim("Documentation")} ${chalk.underline.cyan("https://github.com/opticore
|
|
27
|
+
console.log(` ${chalk.bold.dim("Documentation")} ${chalk.underline.cyan("https://github.com/guyzoum77/opticore-installer")}
|
|
28
28
|
`);
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -269,7 +269,7 @@ var SPromptsDBCredentials = class {
|
|
|
269
269
|
CDbNameLabel.placeholderDBUser,
|
|
270
270
|
CDbNameLabel.dbUserInvalidValue,
|
|
271
271
|
CDbNameLabel.dbUserBadPattern,
|
|
272
|
-
"
|
|
272
|
+
"^.+$",
|
|
273
273
|
this.projectPath
|
|
274
274
|
);
|
|
275
275
|
if (user instanceof Function) {
|
|
@@ -328,7 +328,7 @@ var SPromptsDBCredentials = class {
|
|
|
328
328
|
CDbNameLabel.placeholderDBName,
|
|
329
329
|
CDbNameLabel.dbNameInvalidValue,
|
|
330
330
|
CDbNameLabel.dbNameBadPattern,
|
|
331
|
-
"
|
|
331
|
+
"^.+$",
|
|
332
332
|
this.projectPath
|
|
333
333
|
);
|
|
334
334
|
if (dbName instanceof Function) {
|