From e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 07:07:58 +0000
Subject: [PATCH] actually add processed tag to frontmatter
---
quartz/bootstrap-cli.mjs | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/quartz/bootstrap-cli.mjs b/quartz/bootstrap-cli.mjs
index f25484b..1f853a2 100755
--- a/quartz/bootstrap-cli.mjs
+++ b/quartz/bootstrap-cli.mjs
@@ -79,6 +79,11 @@
default: 8080,
describe: "port to serve Quartz on",
},
+ bundleInfo: {
+ boolean: true,
+ default: false,
+ describe: "show detailed bundle information",
+ },
}
function escapePath(fp) {
@@ -242,6 +247,8 @@
)
spawnSync("git", ["pull", UPSTREAM_NAME, QUARTZ_SOURCE_BRANCH], { stdio: "inherit" })
await popContentFolder(contentFolder)
+ console.log("Ensuring dependencies are up to date")
+ spawnSync("npm", ["i"], { stdio: "inherit" })
console.log(chalk.green("Done!"))
})
.command("sync", "Sync your Quartz to and from GitHub.", SyncArgv, async (argv) => {
@@ -284,6 +291,7 @@
outfile: path.join("quartz", cacheFile),
bundle: true,
keepNames: true,
+ minify: true,
platform: "node",
format: "esm",
jsx: "automatic",
@@ -315,6 +323,7 @@
sourcefile,
},
write: false,
+ minify: true,
bundle: true,
platform: "browser",
format: "esm",
@@ -332,13 +341,10 @@
.catch((err) => {
console.error(`${chalk.red("Couldn't parse Quartz configuration:")} ${fp}`)
console.log(`Reason: ${chalk.grey(err)}`)
- console.log(
- "hint: make sure all the required dependencies are installed (run `npm install`)",
- )
process.exit(1)
})
- if (argv.verbose) {
+ if (argv.bundleInfo) {
const outputFileName = "quartz/.quartz-cache/transpiled-build.mjs"
const meta = result.metafile.outputs[outputFileName]
console.log(
@@ -346,6 +352,7 @@
meta.bytes,
)})`,
)
+ console.log(await esbuild.analyzeMetafile(result.metafile, { color: true }))
}
const { default: buildQuartz } = await import(cacheFile)
--
Gitblit v1.10.0