This commit is contained in:
2025-02-08 22:40:36 -08:00
parent 09b3508a72
commit 89eadbd477
70 changed files with 9585 additions and 2783 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import Image, { type ImageProps } from "next/image";
import { Button } from "@repo/ui/button";
import { Button } from "@nazara/ui/button";
import styles from "./page.module.css";
type Props = Omit<ImageProps, "src"> & {
+1 -1
View File
@@ -1,4 +1,4 @@
import { nextJsConfig } from "@repo/eslint-config/next-js";
import { nextJsConfig } from "@nazara/eslint-config/next-js";
/** @type {import("eslint").Linter.Config} */
export default nextJsConfig;
+5 -5
View File
@@ -1,5 +1,5 @@
{
"name": "docs",
"name": "@nazara/docs",
"version": "0.1.0",
"type": "module",
"private": true,
@@ -11,18 +11,18 @@
"check-types": "tsc --noEmit"
},
"dependencies": {
"@repo/ui": "workspace:*",
"@nazara/ui": "workspace:*",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@nazara/eslint-config": "workspace:*",
"@nazara/typescript-config": "workspace:*",
"@types/node": "^22",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "^9.19.0",
"typescript": "5.7.3"
}
}
}
+2 -2
View File
@@ -1,5 +1,5 @@
{
"extends": "@repo/typescript-config/nextjs.json",
"extends": "@nazara/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
@@ -17,4 +17,4 @@
"exclude": [
"node_modules"
]
}
}