/
ethyne
/
notes
Обзор
Документация
Войти
/
ethyne
/
notes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4
quartz/cli/constants.js
15 строк
583 B
Ben Schlegel
cleanup: rework cli to allow invoking create and build outside of cli (#428)
28 авг 2023, 01:59
Не верифицирован
28 авг 2023, 01:59
4b89202
Код
Авторство
О чём код?
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 = "v4" 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")