Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async runGenerator(context: ScaffoldContext, moduleRoot: Path) {
const { tool } = this;
const args = [context.generator, context.action];
try {
return await engine(context.argv, {
// @ts-ignore Broken upstream
createPrompter: /* istanbul ignore next */ () => ({ prompt: this.handlePrompt }),
cwd: tool.options.root,
debug: tool.config.debug,
exec: this.handleExec,
logger: new Logger(this.handleLog),
templates: moduleRoot.append('templates').path(),
});
} catch (error) {
// Intercept hygen error to provide a better error message
if (error.message.startsWith("I can't find action")) {
throw new Error(this.tool.msg('errors:scaffoldNoTemplates', { path: args.join('/') }));
}
throw error;
}
}