linage-cli 1.1.0 → 1.1.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/index.js +1 -1
- package/package.json +1 -1
- package/utils/ui.js +5 -2
package/index.js
CHANGED
package/package.json
CHANGED
package/utils/ui.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
const chalk = require('chalk');
|
|
2
2
|
const figlet = require('figlet');
|
|
3
|
-
|
|
3
|
+
let gradient = require('gradient-string');
|
|
4
|
+
if (typeof gradient !== 'function' && gradient.default) {
|
|
5
|
+
gradient = gradient.default;
|
|
6
|
+
}
|
|
4
7
|
const boxen = require('boxen');
|
|
5
8
|
|
|
6
9
|
// Neo-Design Palette
|
|
@@ -21,7 +24,7 @@ const printHeader = () => {
|
|
|
21
24
|
horizontalLayout: 'fitted'
|
|
22
25
|
})));
|
|
23
26
|
console.log(chalk.bold.hex(COLORS.cyan)(' ⬡ ') + chalk.hex(COLORS.zinc)("Automated Dependency Discovery & Lineage Mapping"));
|
|
24
|
-
console.log(chalk.hex(COLORS.zinc)(' v1.
|
|
27
|
+
console.log(chalk.hex(COLORS.zinc)(' v1.1.1 • linage.cloud'));
|
|
25
28
|
console.log('');
|
|
26
29
|
};
|
|
27
30
|
|