From 4811500b1b9c169aac82254d771677cd6dc2a86c Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 01:20:43 +0000
Subject: [PATCH] make component resources a proper emitter

---
 quartz/bootstrap-cli.mjs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/quartz/bootstrap-cli.mjs b/quartz/bootstrap-cli.mjs
index 475e624..aa26ffc 100755
--- a/quartz/bootstrap-cli.mjs
+++ b/quartz/bootstrap-cli.mjs
@@ -82,8 +82,8 @@
   bundleInfo: {
     boolean: true,
     default: false,
-    describe: "show detailed bundle information"
-  }
+    describe: "show detailed bundle information",
+  },
 }
 
 function escapePath(fp) {
@@ -351,9 +351,9 @@
       console.log(
         `Successfully transpiled ${Object.keys(meta.inputs).length} files (${prettyBytes(
           meta.bytes,
-        )})`)
-      console.log(await esbuild.analyzeMetafile(result.metafile, { color: true })
+        )})`,
       )
+      console.log(await esbuild.analyzeMetafile(result.metafile, { color: true }))
     }
 
     const { default: buildQuartz } = await import(cacheFile)

--
Gitblit v1.10.0