feat: migrate default config and templates to npm specifiers

- quartz.config.default.yaml: all 44 plugins use @quartz-community/* npm specifiers
- cli/templates/*.yaml: all 4 templates updated (default, blog, obsidian, ttrpg)
- bootstrap-cli.mjs: updated help text
- package.json: devDeps use npm semver ranges instead of github: specifiers
- gitLoader.ts: regeneratePluginIndex scans npm packages from node_modules
- install-plugins.ts: generates plugin index for npm packages
- Removed quartz.lock.json (only relevant for git-installed plugins)
This commit is contained in:
saberzero1
2026-07-23 01:29:25 +02:00
parent ab8e77392c
commit 97eea3ee34
11 changed files with 297 additions and 530 deletions
+21 -10
View File
@@ -2,7 +2,7 @@
import fs from "fs"
import path from "path"
import YAML from "yaml"
import { installPlugins, parsePluginSource } from "./gitLoader.js"
import { installPlugins, parsePluginSource, regeneratePluginIndex } from "./gitLoader.js"
import type { PluginSource, QuartzPluginsJson } from "./types.js"
function resolveConfigPath(): string {
@@ -57,19 +57,30 @@ async function main() {
.map((source: PluginSource) => parsePluginSource(source))
.filter((spec) => !spec.npmPackage)
if (specs.length === 0) {
console.log("No external Git plugins to install.")
const npmSpecs = externalPlugins
.map((source: PluginSource) => parsePluginSource(source))
.filter((spec) => spec.npmPackage)
if (specs.length === 0 && npmSpecs.length === 0) {
console.log("No external plugins to install.")
return
}
console.log(`Installing ${specs.length} plugin(s) from Git...`)
const installed = await installPlugins(specs, { verbose: true })
if (specs.length > 0) {
console.log(`Installing ${specs.length} plugin(s) from Git...`)
const installed = await installPlugins(specs, { verbose: true })
if (installed.size === externalPlugins.length) {
console.log("✓ All plugins installed successfully")
} else {
console.error(`✗ Only ${installed.size}/${externalPlugins.length} plugins installed`)
process.exit(1)
if (installed.size === specs.length) {
console.log("✓ All Git plugins installed successfully")
} else {
console.error(`✗ Only ${installed.size}/${specs.length} Git plugins installed`)
process.exit(1)
}
}
if (npmSpecs.length > 0) {
console.log(`Found ${npmSpecs.length} npm plugin(s), regenerating plugin index...`)
await regeneratePluginIndex({ verbose: true, npmPackages: npmSpecs.map((s) => s.name) })
}
}