/
superded
/
void
Обзор
Документация
Войти
/
superded
/
void
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
readme
quartz/cli/constants.js
16 строк
659 B
superded42
Initial commit
04 июл 2026, 05:05
Не верифицирован
04 июл 2026, 05:05
af1cbe5
Код
Авторство
О чём код?
import path from "path" import { readFileSync } from "fs" /** * All constants relating to helpers or handlers */ export const ORIGIN_NAME = "origin" export const UPSTREAM_NAME = "upstream" export const QUARTZ_SOURCE_BRANCH = "v5" export const QUARTZ_SOURCE_REPO = "https://github.com/jackyzha0/quartz.git" export const cwd = process.cwd() export const cacheDir = path.join(cwd, ".quartz-cache") export const cacheFile = "./quartz/.quartz-cache/transpiled-build.mjs" export const fp = "./quartz/build.ts" export const { version } = JSON.parse(readFileSync("./package.json").toString()) export const contentCacheFolder = path.join(cacheDir, "content-cache")