The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(deps): bump deps, silence internal punycode deprecation

+10 -9
+8 -7
package-lock.json
··· 90 90 "typescript": "^5.8.2" 91 91 }, 92 92 "engines": { 93 - "node": "20 || >=22", 93 + "node": ">=20", 94 94 "npm": ">=9.3.1" 95 95 } 96 96 }, ··· 2385 2385 } 2386 2386 }, 2387 2387 "node_modules/cross-spawn": { 2388 - "version": "7.0.3", 2389 - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 2390 - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 2388 + "version": "7.0.6", 2389 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2390 + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2391 + "license": "MIT", 2391 2392 "dependencies": { 2392 2393 "path-key": "^3.1.0", 2393 2394 "shebang-command": "^2.0.0", ··· 3955 3956 } 3956 3957 }, 3957 3958 "node_modules/katex": { 3958 - "version": "0.16.11", 3959 - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.11.tgz", 3960 - "integrity": "sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==", 3959 + "version": "0.16.21", 3960 + "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.21.tgz", 3961 + "integrity": "sha512-XvqR7FgOHtWupfMiigNzmh+MgUVmDGU2kXZm899ZkPfcuoPuFxyHmXsgATDpFZDAXCI8tvinaVcDo8PIIJSo4A==", 3961 3962 "funding": [ 3962 3963 "https://opencollective.com/katex", 3963 3964 "https://github.com/sponsors/katex"
+1 -1
quartz/bootstrap-cli.mjs
··· 1 - #!/usr/bin/env node 1 + #!/usr/bin/env node --no-deprecation 2 2 import yargs from "yargs" 3 3 import { hideBin } from "yargs/helpers" 4 4 import {
+1 -1
quartz/plugins/emitters/contentPage.tsx
··· 131 131 if (!containsIndex && !ctx.argv.fastRebuild) { 132 132 console.log( 133 133 chalk.yellow( 134 - `\nWarning: you seem to be missing an \`index.md\` home page file at the root of your \`${ctx.argv.directory}\` folder. This may cause errors when deploying.`, 134 + `\nWarning: you seem to be missing an \`index.md\` home page file at the root of your \`${ctx.argv.directory}\` folder (\`${path.join(ctx.argv.directory, "index.md")} does not exist\`). This may cause errors when deploying.`, 135 135 ), 136 136 ) 137 137 }