From 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 00:09:12 +0000
Subject: [PATCH] format
---
quartz/build.ts | 5 +----
quartz/processors/emit.ts | 14 +++-----------
quartz/plugins/emitters/assets.ts | 4 +---
quartz/plugins/emitters/static.ts | 7 ++-----
quartz/plugins/emitters/index.ts | 2 +-
quartz/plugins/emitters/aliases.ts | 2 +-
6 files changed, 9 insertions(+), 25 deletions(-)
diff --git a/quartz/build.ts b/quartz/build.ts
index 553bd8c..26baa1b 100644
--- a/quartz/build.ts
+++ b/quartz/build.ts
@@ -91,10 +91,7 @@
await rimraf(argv.output)
const parsedFiles = [...contentMap.values()]
const filteredContent = filterContent(ctx, parsedFiles)
- await emitContent(
- ctx,
- filteredContent,
- )
+ await emitContent(ctx, filteredContent)
console.log(chalk.green(`Done rebuilding in ${perf.timeSince()}`))
} catch {
console.log(chalk.yellow(`Rebuild failed. Waiting on a change to fix the error...`))
diff --git a/quartz/plugins/emitters/aliases.ts b/quartz/plugins/emitters/aliases.ts
index 0a992ba..7d2c08a 100644
--- a/quartz/plugins/emitters/aliases.ts
+++ b/quartz/plugins/emitters/aliases.ts
@@ -13,7 +13,7 @@
getQuartzComponents() {
return []
},
- async emit({argv}, content, _resources, emit): Promise<FilePath[]> {
+ async emit({ argv }, content, _resources, emit): Promise<FilePath[]> {
const fps: FilePath[] = []
for (const [_tree, file] of content) {
diff --git a/quartz/plugins/emitters/assets.ts b/quartz/plugins/emitters/assets.ts
index d0913c4..51c8d84 100644
--- a/quartz/plugins/emitters/assets.ts
+++ b/quartz/plugins/emitters/assets.ts
@@ -1,7 +1,5 @@
import { globbyStream } from "globby"
-import {
- FilePath, slugifyFilePath,
-} from "../../path"
+import { FilePath, slugifyFilePath } from "../../path"
import { QuartzEmitterPlugin } from "../types"
import path from "path"
import fs from "fs"
diff --git a/quartz/plugins/emitters/index.ts b/quartz/plugins/emitters/index.ts
index 6f1e143..bb18361 100644
--- a/quartz/plugins/emitters/index.ts
+++ b/quartz/plugins/emitters/index.ts
@@ -4,4 +4,4 @@
export { ContentIndex } from "./contentIndex"
export { AliasRedirects } from "./aliases"
export { Assets } from "./assets"
-export { Static } from "./static"
\ No newline at end of file
+export { Static } from "./static"
diff --git a/quartz/plugins/emitters/static.ts b/quartz/plugins/emitters/static.ts
index 7e4af15..fa30327 100644
--- a/quartz/plugins/emitters/static.ts
+++ b/quartz/plugins/emitters/static.ts
@@ -1,12 +1,9 @@
import { globby } from "globby"
-import {
- FilePath, QUARTZ
-} from "../../path"
+import { FilePath, QUARTZ } from "../../path"
import { QuartzEmitterPlugin } from "../types"
import path from "path"
import fs from "fs"
-
export const Static: QuartzEmitterPlugin = () => ({
name: "Static",
getQuartzComponents() {
@@ -16,6 +13,6 @@
const staticPath = path.join(QUARTZ, "static")
const fps = await globby("*", { cwd: staticPath })
await fs.promises.cp(staticPath, path.join(argv.output, "static"), { recursive: true })
- return fps.map(fp => path.join("static", fp)) as FilePath[]
+ return fps.map((fp) => path.join("static", fp)) as FilePath[]
},
})
diff --git a/quartz/processors/emit.ts b/quartz/processors/emit.ts
index 004bb18..4cb25f6 100644
--- a/quartz/processors/emit.ts
+++ b/quartz/processors/emit.ts
@@ -84,11 +84,8 @@
}
}
-export async function emitContent(
- ctx: BuildCtx,
- content: ProcessedContent[],
-) {
- const { argv, cfg }= ctx
+export async function emitContent(ctx: BuildCtx, content: ProcessedContent[]) {
+ const { argv, cfg } = ctx
const contentFolder = argv.directory
const perf = new PerfTimer()
const log = new QuartzLogger(ctx.argv.verbose)
@@ -125,12 +122,7 @@
// emitter plugins
for (const emitter of cfg.plugins.emitters) {
try {
- const emitted = await emitter.emit(
- ctx,
- content,
- staticResources,
- emit,
- )
+ const emitted = await emitter.emit(ctx, content, staticResources, emit)
emittedFiles += emitted.length
if (ctx.argv.verbose) {
--
Gitblit v1.10.0