Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#531)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: parbez <[email protected]>
  • Loading branch information
renovate[bot] and imranbarbhuiya authored Jan 13, 2025
1 parent b7e2292 commit ffc8e47
Show file tree
Hide file tree
Showing 10 changed files with 1,168 additions and 1,065 deletions.
574 changes: 287 additions & 287 deletions .yarn/releases/yarn-4.5.3.cjs → .yarn/releases/yarn-4.6.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ logFilters:

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.5.3.cjs
yarnPath: .yarn/releases/yarn-4.6.0.cjs
6 changes: 3 additions & 3 deletions apps/website/app/[[...slugs]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { source } from '@/app/source';

import { Edit } from './Edit';

import type { MDXComponents } from 'mdx/types';
import type { MDXComponents, MDXContent } from 'mdx/types';
import type { Metadata } from 'next';
import type { ReactNode } from 'react';

Expand All @@ -21,7 +21,7 @@ export default async function Page(props: { readonly params: Promise<{ slugs?: s

if (!page) notFound();

const Mdx = page.data.body;
const Mdx = page.data.body as MDXContent;

const path = `apps/website/content/docs/${page.file.path}`;
const footer = path.includes('/api/') ? null : (
Expand Down Expand Up @@ -61,7 +61,7 @@ export default async function Page(props: { readonly params: Promise<{ slugs?: s
</Tabs>
),
blockquote: (props) => <Callout>{props.children}</Callout>,
img: (props) => <ImageZoom {...(props as any)} />
img: (props) => <ImageZoom {...props} />
}}
/>
</DocsBody>
Expand Down
2 changes: 1 addition & 1 deletion apps/website/app/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createMDXSource } from 'fumadocs-mdx';
import { docs, meta } from '@/.source';

export const source = loader({
// baseUrl: '/',
baseUrl: '/',
// rootDir: 'docs',
source: createMDXSource(docs, meta)
});
2 changes: 1 addition & 1 deletion apps/website/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
18 changes: 9 additions & 9 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@
},
"dependencies": {
"@types/mdx": "^2.0.13",
"fumadocs-core": "^14.5.6",
"fumadocs-docgen": "^1.3.2",
"fumadocs-mdx": "^11.1.2",
"fumadocs-ui": "^14.5.6",
"fumadocs-core": "^14.7.3",
"fumadocs-docgen": "^1.3.4",
"fumadocs-mdx": "^11.3.0",
"fumadocs-ui": "^14.7.3",
"geist": "^1.3.1",
"next": "15.1.2",
"next": "15.1.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@fumadocs/cli": "^0.0.4",
"@fumadocs/cli": "^0.0.6",
"@tagscript/plugin-discord": "workspace:^",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@types/react": "19.0.6",
"@types/react-dom": "19.0.3",
"eslint-config-mahir": "^1.0.7",
"tagscript": "workspace:^",
"tailwindcss": "^3.4.16",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7"
},
"nextBundleAnalysis": {}
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,28 @@
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/cliff-jumper": "^6.0.0",
"@favware/colorette-spinner": "^1.0.1",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.10.1",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^2.1.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"eslint": "^9.18.0",
"eslint-config-mahir": "^1.0.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prompts": "^2.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typedoc": "^0.27.3",
"typedoc": "^0.27.6",
"typedoc-plugin-external-link": "^3.0.2",
"typedoc-plugin-markdown": "4.3.2",
"typedoc-plugin-mdn-links": "^4.0.4",
"typescript": "^5.7.2",
"typedoc-plugin-markdown": "4.4.1",
"typedoc-plugin-mdn-links": "^4.0.8",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"repository": {
Expand Down Expand Up @@ -72,6 +72,6 @@
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
},
"packageManager": "yarn@4.5.3",
"packageManager": "yarn@4.6.0",
"nextBundleAnalysis": {}
}
4 changes: 2 additions & 2 deletions packages/tagscript-plugin-discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"bot tag"
],
"devDependencies": {
"@favware/cliff-jumper": "^5.0.0",
"@favware/cliff-jumper": "^6.0.0",
"discord.js": "^14.17.3",
"tagscript": "workspace:^",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
},
"peerDependencies": {
"discord.js": "^14.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/tagscript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"tag"
],
"devDependencies": {
"@favware/cliff-jumper": "^5.0.0",
"@favware/cliff-jumper": "^6.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
},
"engines": {
"node": ">=v14.0.0"
Expand Down
Loading

0 comments on commit ffc8e47

Please sign in to comment.