@apart-tech/apart-intelligence 1.1.3 → 1.1.4
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/package.json +1 -1
- package/postinstall.mjs +2 -2
package/package.json
CHANGED
package/postinstall.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// Branded post-install message for Apart Intelligence CLI.
|
|
4
|
-
//
|
|
4
|
+
// Uses stderr so npm doesn't swallow the output.
|
|
5
5
|
|
|
6
6
|
const dim = (s) => `\x1b[2m${s}\x1b[0m`;
|
|
7
7
|
const bold = (s) => `\x1b[1m${s}\x1b[0m`;
|
|
@@ -26,4 +26,4 @@ const logo = [
|
|
|
26
26
|
"",
|
|
27
27
|
];
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
process.stderr.write(logo.join("\n") + "\n");
|