mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
Quartz sync: Feb 13, 2024, 7:11 PM
This commit is contained in:
parent
0e0b769f05
commit
7948f3c6b0
14
content/Updates/2024/feb.md
Normal file
14
content/Updates/2024/feb.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: 02/24 - Summary of Changes
|
||||||
|
draft: true
|
||||||
|
tags:
|
||||||
|
- "#update"
|
||||||
|
date: 2024-02-02
|
||||||
|
lastmod: 2024-02-28
|
||||||
|
---
|
||||||
|
## Housekeeping
|
||||||
|
|
||||||
|
## Pages
|
||||||
|
-
|
||||||
|
## Status Updates
|
||||||
|
- Updated the engine, which was terrifying given how many custom tweaks I have to it.
|
||||||
42
package-lock.json
generated
42
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@jackyzha0/quartz",
|
"name": "@jackyzha0/quartz",
|
||||||
"version": "4.1.0",
|
"version": "4.2.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@jackyzha0/quartz",
|
"name": "@jackyzha0/quartz",
|
||||||
"version": "4.1.0",
|
"version": "4.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@clack/prompts": "^0.7.0",
|
"@clack/prompts": "^0.7.0",
|
||||||
@ -69,27 +69,35 @@
|
|||||||
"quartz": "quartz/bootstrap-cli.mjs"
|
"quartz": "quartz/bootstrap-cli.mjs"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/cli-spinner": "^0.2.1",
|
"@types/cli-spinner": "^0.2.3",
|
||||||
"@types/d3": "^7.4.0",
|
"@types/d3": "^7.4.3",
|
||||||
"@types/flexsearch": "^0.7.3",
|
"@types/hast": "^3.0.4",
|
||||||
"@types/hast": "^2.3.4",
|
"@types/js-yaml": "^4.0.9",
|
||||||
"@types/js-yaml": "^4.0.5",
|
"@types/node": "^20.11.14",
|
||||||
"@types/node": "^20.1.2",
|
"@types/pretty-time": "^1.1.5",
|
||||||
"@types/pretty-time": "^1.1.2",
|
"@types/source-map-support": "^0.5.10",
|
||||||
"@types/source-map-support": "^0.5.6",
|
"@types/ws": "^8.5.10",
|
||||||
"@types/workerpool": "^6.4.0",
|
"@types/yargs": "^17.0.32",
|
||||||
"@types/ws": "^8.5.5",
|
"esbuild": "^0.19.9",
|
||||||
"@types/yargs": "^17.0.24",
|
"prettier": "^3.2.4",
|
||||||
"esbuild": "0.19.2",
|
"tsx": "^4.7.0",
|
||||||
"prettier": "^3.0.0",
|
"typescript": "^5.3.3"
|
||||||
"tsx": "^3.12.7",
|
|
||||||
"typescript": "^5.0.4"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.14",
|
"node": ">=18.14",
|
||||||
"npm": ">=9.3.1"
|
"npm": ">=9.3.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@asamuzakjp/dom-selector": {
|
||||||
|
"version": "2.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz",
|
||||||
|
"integrity": "sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"bidi-js": "^1.0.3",
|
||||||
|
"css-tree": "^2.3.1",
|
||||||
|
"is-potential-custom-element-name": "^1.0.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@clack/core": {
|
"node_modules/@clack/core": {
|
||||||
"version": "0.3.3",
|
"version": "0.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@clack/core/-/core-0.3.3.tgz",
|
"resolved": "https://registry.npmjs.org/@clack/core/-/core-0.3.3.tgz",
|
||||||
|
|||||||
@ -51,9 +51,9 @@ function generateRSSFeed(cfg: GlobalConfiguration, idx: ContentIndex, limit?: nu
|
|||||||
|
|
||||||
const createURLEntry = (slug: SimpleSlug, content: ContentDetails): string => `<item>
|
const createURLEntry = (slug: SimpleSlug, content: ContentDetails): string => `<item>
|
||||||
<title>${content.title}</title>
|
<title>${content.title}</title>
|
||||||
<link>${root}/${slug}</link>
|
<link>${base}/${slug}</link>
|
||||||
<guid>${root}/${slug}</guid>
|
<guid>${base}/${slug}</guid>
|
||||||
<description>${content.description} Read more at <a href="${root}/${slug}">be-far.com</a></description>
|
<description>${content.description} Read more at <a href="${base}/${slug}">be-far.com</a></description>
|
||||||
<pubDate>${content.date?.toUTCString()}</pubDate>
|
<pubDate>${content.date?.toUTCString()}</pubDate>
|
||||||
</item>`
|
</item>`
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ function generateRSSFeed(cfg: GlobalConfiguration, idx: ContentIndex, limit?: nu
|
|||||||
<rss version="2.0">
|
<rss version="2.0">
|
||||||
<channel>
|
<channel>
|
||||||
<title>${escapeHTML(cfg.pageTitle)}</title>
|
<title>${escapeHTML(cfg.pageTitle)}</title>
|
||||||
<link>${root}</link>
|
<link>${base}</link>
|
||||||
<description>${!!limit ? `Last ${limit} notes` : "Recent notes"} on ${
|
<description>${!!limit ? `Last ${limit} notes` : "Recent notes"} on ${
|
||||||
escapeHTML(cfg.pageTitle)
|
escapeHTML(cfg.pageTitle)
|
||||||
}</description>
|
}</description>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user