@leanix/reporting-cli
Version:
Command line interface to develop custom reports for LeanIX EAM
22 lines (17 loc) • 623 B
text/typescript
import chalk from 'chalk'
import { execAsync, rimrafAsync } from './async.helpers'
export class Builder {
constructor(private logger: { log: (string: string) => void, error: (string: string) => void }) {}
public async build(distPath: string, buildCommand: string): Promise<void> {
this.logger.log(chalk.yellow(chalk.italic('Building...')))
try {
await rimrafAsync(distPath)
const { stdout } = await execAsync(buildCommand)
this.logger.log(stdout)
this.logger.log(chalk.green('\u2713 Project successfully build!'))
}
catch (error) {
this.logger.error(error)
}
}
}