create-fumadocs-app 11.1.0 → 11.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,14 +11,14 @@ var package_default = {
|
|
|
11
11
|
license: "MIT",
|
|
12
12
|
dependencies: {
|
|
13
13
|
"@types/mdx": "^2.0.13",
|
|
14
|
-
"@types/react": "^18.3.
|
|
14
|
+
"@types/react": "^18.3.2",
|
|
15
15
|
"@types/react-dom": "^18.3.0",
|
|
16
16
|
autoprefixer: "^10.4.19",
|
|
17
17
|
contentlayer: "^0.3.4",
|
|
18
|
-
"fumadocs-contentlayer": "^1.1.
|
|
19
|
-
"fumadocs-core": "^11.1.
|
|
20
|
-
"fumadocs-mdx": "^8.2.
|
|
21
|
-
"fumadocs-ui": "^11.1.
|
|
18
|
+
"fumadocs-contentlayer": "^1.1.22",
|
|
19
|
+
"fumadocs-core": "^11.1.2",
|
|
20
|
+
"fumadocs-mdx": "^8.2.20",
|
|
21
|
+
"fumadocs-ui": "^11.1.2",
|
|
22
22
|
next: "^14.2.3",
|
|
23
23
|
"next-contentlayer": "^0.3.4",
|
|
24
24
|
postcss: "^8.4.38",
|
package/dist/create-app.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fumadocs-app",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.2",
|
|
4
4
|
"description": "Create a new documentation site with Fumadocs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@clack/prompts": "^0.7.0",
|
|
23
23
|
"cross-spawn": "^7.0.3",
|
|
24
|
-
"picocolors": "^1.0.
|
|
24
|
+
"picocolors": "^1.0.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/cross-spawn": "^6.0.6",
|
|
@@ -9,7 +9,7 @@ const inter = Inter({
|
|
|
9
9
|
|
|
10
10
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
11
11
|
return (
|
|
12
|
-
<html lang="en" className={inter.className}>
|
|
12
|
+
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
13
13
|
<body>
|
|
14
14
|
<RootProvider>{children}</RootProvider>
|
|
15
15
|
</body>
|
|
@@ -9,7 +9,7 @@ const inter = Inter({
|
|
|
9
9
|
|
|
10
10
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
11
11
|
return (
|
|
12
|
-
<html lang="en" className={inter.className}>
|
|
12
|
+
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
13
13
|
<body>
|
|
14
14
|
<RootProvider>{children}</RootProvider>
|
|
15
15
|
</body>
|