()
| 4 | import { wrapInColor } from '../utils/logUtils'; |
| 5 | |
| 6 | async function valdiSetup() { |
| 7 | const returnCode = await beginEnvironmentSetup(); |
| 8 | |
| 9 | if (returnCode !== 0) { |
| 10 | console.log(wrapInColor('Environment setup did not complete successfully.', ANSI_COLORS.YELLOW_COLOR)); |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | export const command = 'dev_setup'; |
| 15 | export const describe = 'Sets up the development environment for Valdi'; |
nothing calls this directly
no test coverage detected