Skip to content

Commit

Permalink
fix object logger plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Dec 4, 2024
1 parent 96af571 commit 45be733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function objectLogger(obj: Record<string, string>): PluginOption {
const li = (k: string, v: string) => `\x1b[32m➜\x1b[0m ${k} \x1b[36m${v}\x1b[0m`;

return {
name: "target-logger",
name: "object-logger",
buildStart() {
console.log();
for (const key in obj) console.log(li(key, obj[key]));
Expand Down

0 comments on commit 45be733

Please sign in to comment.