UNPKG

589 BJavaScriptView Raw
1if (!process.env.NODE_ENV) {
2 process.env.NODE_ENV = 'production'
3}
4
5const { ux } = require('@cto.ai/sdk')
6
7const postInstall = async () => {
8 console.log(
9 `\n🎨 ${ux.colors.multiOrange('Pro Tip!')} ${ux.colors.callOutCyan(
10 'CTO.ai Ops CLI',
11 )} is best used with a dark background.\n${ux.colors.multiOrange(
12 'We recommend adjust your CLI background to get the best experience.\n',
13 )}`,
14 )
15
16 console.log(
17 `\n💻 Next, you'll need to sign up for an account by running ${ux.colors.italic.dim(
18 'ops account:signup',
19 )}\n\n`,
20 )
21}
22
23postInstall()