@jellylegsai/aether-cli 1.9.1 → 2.0.1

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/commands/slot.js CHANGED
@@ -16,17 +16,9 @@
16
16
 
17
17
  const path = require('path');
18
18
 
19
- // ANSI colours
20
- const C = {
21
- reset: '\x1b[0m',
22
- bright: '\x1b[1m',
23
- dim: '\x1b[2m',
24
- red: '\x1b[31m',
25
- green: '\x1b[32m',
26
- yellow: '\x1b[33m',
27
- cyan: '\x1b[36m',
28
- magenta: '\x1b[35m',
29
- };
19
+ // Import UI framework for consistent branding
20
+ const { BRANDING, C, indicators, startSpinner, stopSpinner,
21
+ success, error, code, highlight } = require('../lib/ui');
30
22
 
31
23
  const CLI_VERSION = '1.0.0';
32
24