@brunoluizdesiqueira/bbuilder-cli 1.0.19 → 1.0.20
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/ui/output.js +14 -11
- package/package.json +1 -1
package/dist/ui/output.js
CHANGED
|
@@ -13,18 +13,21 @@ exports.withProgress = withProgress;
|
|
|
13
13
|
exports.fatal = fatal;
|
|
14
14
|
const chalk_1 = __importDefault(require("chalk"));
|
|
15
15
|
function banner() {
|
|
16
|
+
const art = [
|
|
17
|
+
' ███ ███ █ █ ███ █ ████ ████ ███ ',
|
|
18
|
+
' █ █ █ █ █ █ █ █ █ █ █ █ █',
|
|
19
|
+
' ███ ███ █ █ █ █ █ █ ███ ███ ',
|
|
20
|
+
' █ █ █ █ █ █ █ █ █ █ █ █ █ ',
|
|
21
|
+
' ███ ███ ███ ███ ████ ████ ████ █ █',
|
|
22
|
+
];
|
|
16
23
|
console.log('');
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
console.log(chalk_1.default.
|
|
22
|
-
console.log(chalk_1.default.cyan('
|
|
23
|
-
console.log(chalk_1.default.
|
|
24
|
-
console.log(chalk_1.default.green(' [+]') + chalk_1.default.white(' Iniciando Pipeline DevOps Local... ') + chalk_1.default.green('[ RUNNING ]'));
|
|
25
|
-
console.log(chalk_1.default.green(' [+]') + chalk_1.default.white(' Engatando Motor Embarcadero... ') + chalk_1.default.green('[ STANDBY ]'));
|
|
26
|
-
console.log(chalk_1.default.green(' [+]') + chalk_1.default.white(' Sanitizando Caches Fantasmas... ') + chalk_1.default.green('[ CLEARED ]'));
|
|
27
|
-
console.log(chalk_1.default.blue(' ══════════════════════════════════════════════════════════════'));
|
|
24
|
+
art.forEach((line, index) => {
|
|
25
|
+
const color = index === 0 || index === art.length - 1 ? chalk_1.default.gray : chalk_1.default.white;
|
|
26
|
+
console.log(color(line));
|
|
27
|
+
});
|
|
28
|
+
console.log(chalk_1.default.gray(' ──────────────────────────────────────────────────────────────────────────────'));
|
|
29
|
+
console.log(chalk_1.default.cyan(' BBuilder') + chalk_1.default.gray(' local delphi build runner'));
|
|
30
|
+
console.log(chalk_1.default.gray(' doctor') + chalk_1.default.gray(' ambiente · ') + chalk_1.default.gray('config') + chalk_1.default.gray(' projeto · ') + chalk_1.default.gray('build') + chalk_1.default.gray(' execucao'));
|
|
28
31
|
console.log('');
|
|
29
32
|
}
|
|
30
33
|
function printBuildHeader(opts, projectName, workspaceDir) {
|