diff --git a/src/bin/eject-page.ts b/src/bin/eject-page.ts index bacafe6f..ee4a3581 100644 --- a/src/bin/eject-page.ts +++ b/src/bin/eject-page.ts @@ -22,10 +22,16 @@ import { kebabCaseToCamelCase } from "./tools/kebabCaseToSnakeCase"; import { assert, Equals } from "tsafe/assert"; import type { BuildContext } from "./shared/buildContext"; import chalk from "chalk"; +import { maybeDelegateCommandToCustomHandler } from "./shared/customHandler_delegate"; export async function command(params: { buildContext: BuildContext }) { const { buildContext } = params; + maybeDelegateCommandToCustomHandler({ + commandName: "eject-page", + buildContext + }); + console.log(chalk.cyan("Theme type:")); const themeType = await (async () => {