@brunoluizdesiqueira/bbuilder-cli 1.0.20 → 1.0.21
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 +15 -12
- package/package.json +1 -1
package/dist/ui/output.js
CHANGED
|
@@ -46,18 +46,21 @@ function printBuildHeader(opts, projectName, workspaceDir) {
|
|
|
46
46
|
}
|
|
47
47
|
function printSuccess(buildType) {
|
|
48
48
|
console.log('');
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
console.log(chalk_1.default.green('
|
|
49
|
+
const art = [
|
|
50
|
+
' ████ █ █ ███ ███ ████ ████ ████ ',
|
|
51
|
+
' █ █ █ █ █ █ █ █ █ █ ',
|
|
52
|
+
' ███ █ █ █ █ ███ ███ ███ ',
|
|
53
|
+
' █ █ █ █ █ █ █ █ █ █ ',
|
|
54
|
+
' ████ ███ ███ ███ ████ ████ ████ ',
|
|
55
|
+
];
|
|
56
|
+
art.forEach((line, index) => {
|
|
57
|
+
const color = index === 0 || index === art.length - 1 ? chalk_1.default.green : chalk_1.default.white;
|
|
58
|
+
console.log(color(line));
|
|
59
|
+
});
|
|
60
|
+
console.log(chalk_1.default.green(' ──────────────────────────────────────────────────────────────'));
|
|
61
|
+
console.log(chalk_1.default.cyan(' [ok] ') + chalk_1.default.white('Build ') + chalk_1.default.yellow(buildType) + chalk_1.default.white(' finalizado com sucesso.'));
|
|
62
|
+
console.log(chalk_1.default.cyan(' [ok] ') + chalk_1.default.white('Artefatos validados e recursos aplicados.'));
|
|
63
|
+
console.log(chalk_1.default.cyan(' [run]') + chalk_1.default.white(' Pipeline concluído.'));
|
|
61
64
|
console.log('');
|
|
62
65
|
}
|
|
63
66
|
function step(msg) {
|