Skip to content

Commit

Permalink
vite version
Browse files Browse the repository at this point in the history
  • Loading branch information
birkskyum committed Feb 20, 2024
1 parent 6becd3f commit 10a4065
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/vinxi/bin/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ const command = defineCommand({
const chokidar = await import("chokidar");
const { loadApp } = await import("../lib/load-app.js");
const { log, c } = await import("../lib/logger.js");
log(c.dim(c.yellow(packageJson.version)));
log(c.dim(c.yellow(`Vinxi: ${packageJson.version}`)));

let vite = await import("vite/package.json", { assert: { type: "json" }});
log(c.dim(c.yellow(`Vite: ${vite.default.version}`)));

const configFile = args.config;
globalThis.MANIFEST = {};
const app = await loadApp(configFile, args);
Expand Down

0 comments on commit 10a4065

Please sign in to comment.