()
| 2 | import { fatal } from '../errors'; |
| 3 | |
| 4 | export async function serveCommand(): Promise<void> { |
| 5 | fatal( |
| 6 | `The serve command has been removed.\n` + |
| 7 | `Use a third-party tool for serving single page apps, such as ${c.strong( |
| 8 | 'serve', |
| 9 | )}: ${c.strong('https://www.npmjs.com/package/serve')}`, |
| 10 | ); |
| 11 | } |