1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-17 17:45:27 -04:00

bump deps

This commit is contained in:
2024-10-11 10:48:21 -04:00
parent 89cd6780f9
commit f886a7cd0b
7 changed files with 821 additions and 1052 deletions
+2
View File
@@ -35,6 +35,8 @@ updates:
- "@typescript-eslint/parser" - "@typescript-eslint/parser"
ignore: ignore:
- dependency-name: "@jakejarvis/eslint-config" - dependency-name: "@jakejarvis/eslint-config"
- dependency-name: "@types/node"
- dependency-name: "@types/prop-types"
labels: labels:
- "📦 dependencies" - "📦 dependencies"
commit-message: commit-message:
+1 -1
View File
@@ -1 +1 @@
20.16.0 20.18.0
+2 -11
View File
@@ -69,7 +69,7 @@ export const getPostData = async (
// fully parses MDX into JS and returns *everything* about a post // fully parses MDX into JS and returns *everything* about a post
export const compilePost = async (slug: string): Promise<PostWithSource> => { export const compilePost = async (slug: string): Promise<PostWithSource> => {
const { remarkGfm, remarkSmartypants, remarkUnwrapImages, rehypeSlug, rehypePrism } = await import( const { remarkGfm, remarkSmartypants, rehypeSlug, rehypeUnwrapImages, rehypePrism } = await import(
"./remark-rehype-plugins" "./remark-rehype-plugins"
); );
@@ -79,10 +79,8 @@ export const compilePost = async (slug: string): Promise<PostWithSource> => {
parseFrontmatter: false, parseFrontmatter: false,
mdxOptions: { mdxOptions: {
remarkPlugins: [ remarkPlugins: [
// @ts-ignore
[remarkGfm, { singleTilde: false }], [remarkGfm, { singleTilde: false }],
[ [
// @ts-ignore
remarkSmartypants, remarkSmartypants,
{ {
quotes: true, quotes: true,
@@ -91,15 +89,8 @@ export const compilePost = async (slug: string): Promise<PostWithSource> => {
ellipses: false, ellipses: false,
}, },
], ],
// @ts-ignore
[remarkUnwrapImages],
],
rehypePlugins: [
// @ts-ignore
[rehypeSlug],
// @ts-ignore
[rehypePrism, { ignoreMissing: true }],
], ],
rehypePlugins: [rehypeSlug, rehypeUnwrapImages, [rehypePrism, { ignoreMissing: true }]],
}, },
}); });
+1 -1
View File
@@ -2,8 +2,8 @@ export { default as rehypePrism } from "rehype-prism-plus";
export { default as rehypeSanitize } from "rehype-sanitize"; export { default as rehypeSanitize } from "rehype-sanitize";
export { default as rehypeSlug } from "rehype-slug"; export { default as rehypeSlug } from "rehype-slug";
export { default as rehypeStringify } from "rehype-stringify"; export { default as rehypeStringify } from "rehype-stringify";
export { default as rehypeUnwrapImages } from "rehype-unwrap-images";
export { default as remarkGfm } from "remark-gfm"; export { default as remarkGfm } from "remark-gfm";
export { default as remarkParse } from "remark-parse"; export { default as remarkParse } from "remark-parse";
export { default as remarkRehype } from "remark-rehype"; export { default as remarkRehype } from "remark-rehype";
export { default as remarkSmartypants } from "remark-smartypants"; export { default as remarkSmartypants } from "remark-smartypants";
export { default as remarkUnwrapImages } from "remark-unwrap-images";
+24 -24
View File
@@ -21,13 +21,13 @@
}, },
"dependencies": { "dependencies": {
"@giscus/react": "^3.0.0", "@giscus/react": "^3.0.0",
"@libsql/client": "^0.8.1", "@libsql/client": "^0.14.0",
"@novnc/novnc": "1.4.0", "@novnc/novnc": "1.4.0",
"@octokit/graphql": "^8.1.1", "@octokit/graphql": "^8.1.1",
"@octokit/graphql-schema": "^15.25.0", "@octokit/graphql-schema": "^15.25.0",
"@prisma/adapter-libsql": "^5.19.1", "@prisma/adapter-libsql": "^5.20.0",
"@prisma/client": "^5.19.1", "@prisma/client": "^5.20.0",
"@react-spring/web": "^9.7.4", "@react-spring/web": "^9.7.5",
"@stitches/react": "1.3.1-1", "@stitches/react": "1.3.1-1",
"@vercel/analytics": "^1.3.1", "@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12", "@vercel/speed-insights": "^1.0.12",
@@ -39,7 +39,7 @@
"formik": "^2.4.6", "formik": "^2.4.6",
"geist": "^1.3.1", "geist": "^1.3.1",
"gray-matter": "^4.0.3", "gray-matter": "^4.0.3",
"next": "14.2.9", "next": "14.2.15",
"next-mdx-remote": "^5.0.0", "next-mdx-remote": "^5.0.0",
"next-seo": "^6.6.0", "next-seo": "^6.6.0",
"nodemailer": "^6.9.15", "nodemailer": "^6.9.15",
@@ -48,7 +48,7 @@
"p-memoize": "^7.1.1", "p-memoize": "^7.1.1",
"polished": "^4.3.1", "polished": "^4.3.1",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
"query-string": "^9.1.0", "query-string": "^9.1.1",
"react": "18.3.1", "react": "18.3.1",
"react-dom": "18.3.1", "react-dom": "18.3.1",
"react-error-boundary": "^4.0.13", "react-error-boundary": "^4.0.13",
@@ -58,18 +58,18 @@
"react-intersection-observer": "^9.13.1", "react-intersection-observer": "^9.13.1",
"react-is": "18.3.1", "react-is": "18.3.1",
"react-player": "^2.16.0", "react-player": "^2.16.0",
"react-textarea-autosize": "^8.5.3", "react-textarea-autosize": "^8.5.4",
"react-turnstile": "^1.1.3", "react-turnstile": "^1.1.4",
"react-tweet": "^3.2.1", "react-tweet": "^3.2.1",
"rehype-prism-plus": "^2.0.0", "rehype-prism-plus": "^2.0.0",
"rehype-sanitize": "^6.0.0", "rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0", "rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0", "rehype-stringify": "^10.0.1",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "^4.0.0", "remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0", "remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0", "remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2", "remark-smartypants": "^3.0.2",
"remark-unwrap-images": "^4.0.0",
"sitemap": "^8.0.0", "sitemap": "^8.0.0",
"stitches-normalize": "^3.0.1", "stitches-normalize": "^3.0.1",
"strip-comments": "^2.0.1", "strip-comments": "^2.0.1",
@@ -80,27 +80,27 @@
"devDependencies": { "devDependencies": {
"@jakejarvis/eslint-config": "^3.1.0", "@jakejarvis/eslint-config": "^3.1.0",
"@types/comma-number": "^2.1.2", "@types/comma-number": "^2.1.2",
"@types/node": "^22.5.4", "@types/node": "^22.7.5",
"@types/nodemailer": "^6.4.15", "@types/nodemailer": "^6.4.16",
"@types/novnc__novnc": "1.3.4", "@types/novnc__novnc": "1.3.4",
"@types/prop-types": "^15.7.12", "@types/prop-types": "^15.7.13",
"@types/react": "^18.3.5", "@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0", "@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0", "@types/react-is": "^18.3.0",
"@types/strip-comments": "^2.0.4", "@types/strip-comments": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.5.0", "@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.5.0", "@typescript-eslint/parser": "^8.8.1",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "~8.57.0", "eslint": "~8.57.1",
"eslint-config-next": "14.2.9", "eslint-config-next": "14.2.15",
"eslint-config-prettier": "~9.1.0", "eslint-config-prettier": "~9.1.0",
"eslint-plugin-mdx": "~3.1.5", "eslint-plugin-mdx": "~3.1.5",
"eslint-plugin-prettier": "~5.2.1", "eslint-plugin-prettier": "~5.2.1",
"lint-staged": "^15.2.10", "lint-staged": "^15.2.10",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"prisma": "^5.19.1", "prisma": "^5.20.0",
"simple-git-hooks": "^2.11.1", "simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2" "typescript": "^5.6.3"
}, },
"optionalDependencies": { "optionalDependencies": {
"sharp": "^0.33.5" "sharp": "^0.33.5"
@@ -120,9 +120,9 @@
"eslint" "eslint"
] ]
}, },
"packageManager": "pnpm@9.6.0", "packageManager": "pnpm@9.12.1",
"volta": { "volta": {
"node": "20.16.0", "node": "20.18.0",
"pnpm": "9.6.0" "pnpm": "9.12.1"
} }
} }
+1 -1
View File
@@ -12,7 +12,7 @@ import type { ReactElement, ComponentPropsWithoutRef, ElementRef } from "react";
const VNC = dynamic(() => import("../components/VNC"), { ssr: false }); const VNC = dynamic(() => import("../components/VNC"), { ssr: false });
// https://github.com/jakejarvis/y2k // https://github.com/jakejarvis/y2k
const SOCKET_PROXY = "wss://y2k.pipe.fail"; const SOCKET_PROXY = "wss://vnc.jarv.is";
const Wallpaper = styled("main", { const Wallpaper = styled("main", {
display: "flex", display: "flex",
+790 -1014
View File
File diff suppressed because it is too large Load Diff