@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.
Files changed (2) hide show
  1. package/dist/ui/output.js +14 -11
  2. 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
- console.log(chalk_1.default.blue(' ══════════════════════════════════════════════════════════════'));
18
- console.log(chalk_1.default.cyan(' ____ _ ____ _ __ __ '));
19
- console.log(chalk_1.default.cyan(' / __ )(_)___ ___ ___ _____/ __ )__ __(_) /___/ / '));
20
- console.log(chalk_1.default.cyan(' / __ / / __ `__ \\/ _ \\/ ___/ __ / / / / / / __ / '));
21
- console.log(chalk_1.default.cyan(' / /_/ / / / / / / / __/ / / /_/ / /_/ / / / /_/ / '));
22
- console.log(chalk_1.default.cyan(' /_____/_/_/ /_/ /_/\\___/_/ /_____/\\__,_/_/_/\\__,_/ '));
23
- console.log(chalk_1.default.blue(' ──────────────────────────────────────────────────────────────'));
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brunoluizdesiqueira/bbuilder-cli",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "CLI de build local para projetos Delphi do Bimer",
5
5
  "license": "ISC",
6
6
  "repository": {