Skip to content

Commit

Permalink
chore: update dependencies (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az authored Feb 26, 2024
1 parent 4a41af0 commit f452226
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
run: bun run build

- name: 'Test'
run: bun run test -- --run
run: bun run test
Binary file modified bun.lockb
Binary file not shown.
Binary file modified examples/astro/bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions examples/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"dependencies": {
"@astrojs/mdx": "^2.1.1",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.3.5",
"astro": "^4.4.4",
"rehype-pretty-code": "^0.13.0",
"shiki":"^1.0.0",
"shiki": "^1.1.7",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@astrojs/check": "^0.4.1",
"@types/node": "^20.11.20",
"@astrojs/check": "^0.5.5",
"typescript": "^5.3.3"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/bun": "^1.0.5",
"@types/node": "^20.11.16",
"@types/bun": "^1.0.7",
"@types/node": "^20.11.20",
"bumpp": "^9.3.0",
"bun": "^1.0.26",
"bun": "^1.0.29",
"hast-util-to-html": "^9.0.0",
"husky": "^9.0.10",
"husky": "^9.0.11",
"mdast-util-to-hast": "^13.1.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"tsup": "^8.0.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"@shikijs/transformers": "^1.0.0",
"shiki": "^1.0.0"
"vite": "^5.1.4",
"vitest": "^1.3.1",
"@shikijs/transformers": "^1.1.7",
"shiki": "^1.1.7"
},
"peerDependencies": {
"shiki": "^1.0.0"
Expand Down
Binary file modified website/bun.lockb
Binary file not shown.
13 changes: 7 additions & 6 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build"
"build": "next build",
"start": "bunx serve@latest out"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.1.0",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
Expand All @@ -19,13 +20,13 @@
"rehype-pretty-code": "^0.13.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"shiki": "^1.0.0",
"shiki": "^1.1.7",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@types/mdx": "^2.0.11",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"typescript": "^5.3.3"
},
Expand Down
Binary file modified website/src/app/favicon.ico
Binary file not shown.
3 changes: 2 additions & 1 deletion website/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import './globals.css';
import type { Metadata } from 'next';

export const metadata = {
title: 'Rehype Pretty Code',
description: 'Beautiful code blocks for your MD/MDX docs.',
};
} satisfies Metadata;

export default function RootLayout({
children,
Expand Down

0 comments on commit f452226

Please sign in to comment.