Skip to content

Commit

Permalink
* added missing dev dependency
Browse files Browse the repository at this point in the history
* fixed lint issues
  • Loading branch information
noxify committed Feb 12, 2025
1 parent 02538de commit 45342f5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renoun-docs-template",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -61,6 +61,7 @@
},
"devDependencies": {
"@eslint/compat": "1.2.6",
"@eslint/js": "9.20.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@next/eslint-plugin-next": "15.1.7",
"@tailwindcss/postcss": "^4.0.6",
Expand Down
16 changes: 4 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/app/docs/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const getBreadcrumbItems = cache(async (slug: string[]) => {
}

frontmatter = await file?.getExportValue("frontmatter")
// eslint-disable-next-line @typescript-eslint/no-unused-vars
} catch (e: unknown) {
continue
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/heading.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ElementType, ReactNode } from "react"
import type { ElementType, ReactNode } from "react"

type IntrinsicElement = keyof JSX.IntrinsicElements
type PolymorphicComponentProps<T extends IntrinsicElement> = {
Expand Down

0 comments on commit 45342f5

Please sign in to comment.