Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: show meta framework name on server build success #1955

Merged
3 changes: 2 additions & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,9 @@ function startRollupWatcher(nitro: Nitro, rollupConfig: RollupConfig) {
// Finished building all bundles
case "END": {
nitro.hooks.callHook("compiled", nitro);
const { framework } = nitro.options;
nitro.logger.success(
"Nitro built",
`Nitro Server v${nitroVersion} built for ${framework.name} v${framework.version}`,
pi0 marked this conversation as resolved.
Show resolved Hide resolved
start ? `in ${Date.now() - start} ms` : ""
);
nitro.hooks.callHook("dev:reload");
Expand Down