···11#!/usr/bin/env node
22import process from 'node:process'
33import { spawn } from 'node:child_process'
44+import { styleText } from 'node:util'
45import * as p from '@clack/prompts'
55-import pc from 'picocolors'
66import { defineCommand, runMain } from 'citty'
77import { serve } from 'srvx'
88import { createConnectorApp, generateToken, CONNECTOR_VERSION } from './server.ts'
···52525353 // Warning message and accept prompt
5454 logWarning(
5555- `This allows ${pc.underline('npmx.dev')} to access your npm cli and any authenticated contexts.`,
5555+ `This allows ${styleText('underline', 'npmx.dev')} to access your npm cli and any authenticated contexts.`,
5656 )
5757 const accept = await p.confirm({
5858 message: 'Do you accept?',