From 569ff1a801f92c0761b5ddc9dbff52833b193c94 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 04:53:34 +0000
Subject: [PATCH] npm i on quartz update
---
content/features/upcoming features.md | 2 --
quartz/bootstrap-cli.mjs | 5 ++---
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/content/features/upcoming features.md b/content/features/upcoming features.md
index 34a95d9..671e6a1 100644
--- a/content/features/upcoming features.md
+++ b/content/features/upcoming features.md
@@ -6,8 +6,6 @@
- back button doesn't work sometimes
- images in same folder are broken on shortest path mode
-
-- install dependencies on quartz update
- https://help.obsidian.md/Editing+and+formatting/Tags#Nested+tags nested tags?? and big tag listing
- watch mode for config/source code
- https://help.obsidian.md/Editing+and+formatting/Basic+formatting+syntax#Task+lists task list styling
diff --git a/quartz/bootstrap-cli.mjs b/quartz/bootstrap-cli.mjs
index aa26ffc..1f853a2 100755
--- a/quartz/bootstrap-cli.mjs
+++ b/quartz/bootstrap-cli.mjs
@@ -247,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) => {
@@ -339,9 +341,6 @@
.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)
})
--
Gitblit v1.10.0