Jacky Zhao
2025-03-06 cc9704becc78d9ab15abda165799b3c773f2ca2b
chore(deps): bump deps, silence internal punycode deprecation
3 files modified
19 ■■■■ changed files
package-lock.json 15 ●●●● patch | view | raw | blame | history
quartz/bootstrap-cli.mjs 2 ●●● patch | view | raw | blame | history
quartz/plugins/emitters/contentPage.tsx 2 ●●● patch | view | raw | blame | history
package-lock.json
@@ -90,7 +90,7 @@
        "typescript": "^5.8.2"
      },
      "engines": {
        "node": "20 || >=22",
        "node": ">=20",
        "npm": ">=9.3.1"
      }
    },
@@ -2385,9 +2385,10 @@
      }
    },
    "node_modules/cross-spawn": {
      "version": "7.0.3",
      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
      "version": "7.0.6",
      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
      "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
      "license": "MIT",
      "dependencies": {
        "path-key": "^3.1.0",
        "shebang-command": "^2.0.0",
@@ -3955,9 +3956,9 @@
      }
    },
    "node_modules/katex": {
      "version": "0.16.11",
      "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.11.tgz",
      "integrity": "sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==",
      "version": "0.16.21",
      "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.21.tgz",
      "integrity": "sha512-XvqR7FgOHtWupfMiigNzmh+MgUVmDGU2kXZm899ZkPfcuoPuFxyHmXsgATDpFZDAXCI8tvinaVcDo8PIIJSo4A==",
      "funding": [
        "https://opencollective.com/katex",
        "https://github.com/sponsors/katex"
quartz/bootstrap-cli.mjs
@@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env node --no-deprecation
import yargs from "yargs"
import { hideBin } from "yargs/helpers"
import {
quartz/plugins/emitters/contentPage.tsx
@@ -131,7 +131,7 @@
      if (!containsIndex && !ctx.argv.fastRebuild) {
        console.log(
          chalk.yellow(
            `\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.`,
            `\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.`,
          ),
        )
      }