@nestjs/cli
Version:
Nest - modern, fast, powerful node.js web framework (@cli)
11 lines (10 loc) • 322 B
JavaScript
import { AbstractRunner } from './abstract.runner.js';
/**
* Runs the `mau` executable from `@nestjs/mau` through the current Node
* binary, mirroring how the schematics CLI is invoked.
*/
export class MauRunner extends AbstractRunner {
constructor(binaryPath) {
super('node', [`"${binaryPath}"`]);
}
}