create-fumadocs-app 15.5.0 → 15.5.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.
|
@@ -60,7 +60,7 @@ function tryGitInit(root) {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
// src/versions.js
|
|
63
|
-
var versions = { "fumadocs-core": "15.5.
|
|
63
|
+
var versions = { "fumadocs-core": "15.5.2", "fumadocs-ui": "15.5.2", "fumadocs-mdx": "11.6.8", "@fumadocs/mdx-remote": "1.3.3", "@fumadocs/content-collections": "1.2.1" };
|
|
64
64
|
|
|
65
65
|
// ../create-app-versions/package.json
|
|
66
66
|
var package_default = {
|
|
@@ -73,31 +73,31 @@ var package_default = {
|
|
|
73
73
|
"@content-collections/core": "^0.9.0",
|
|
74
74
|
"@content-collections/mdx": "^0.2.2",
|
|
75
75
|
"@content-collections/next": "^0.2.6",
|
|
76
|
-
"@react-router/dev": "^7.6.
|
|
77
|
-
"@react-router/node": "^7.6.
|
|
78
|
-
"@react-router/serve": "^7.6.
|
|
79
|
-
"@tailwindcss/postcss": "^4.1.
|
|
80
|
-
"@tailwindcss/vite": "^4.1.
|
|
81
|
-
"@tanstack/react-router": "^1.
|
|
82
|
-
"@tanstack/react-start": "^1.
|
|
76
|
+
"@react-router/dev": "^7.6.2",
|
|
77
|
+
"@react-router/node": "^7.6.2",
|
|
78
|
+
"@react-router/serve": "^7.6.2",
|
|
79
|
+
"@tailwindcss/postcss": "^4.1.10",
|
|
80
|
+
"@tailwindcss/vite": "^4.1.10",
|
|
81
|
+
"@tanstack/react-router": "^1.121.2",
|
|
82
|
+
"@tanstack/react-start": "^1.121.7",
|
|
83
83
|
"@types/mdx": "^2.0.13",
|
|
84
|
-
"@types/node": "
|
|
85
|
-
"@types/react": "^19.1.
|
|
86
|
-
"@types/react-dom": "^19.1.
|
|
87
|
-
"@vitejs/plugin-react": "^4.5.
|
|
84
|
+
"@types/node": "24.0.1",
|
|
85
|
+
"@types/react": "^19.1.8",
|
|
86
|
+
"@types/react-dom": "^19.1.6",
|
|
87
|
+
"@vitejs/plugin-react": "^4.5.2",
|
|
88
88
|
"gray-matter": "^4.0.3",
|
|
89
89
|
isbot: "^5.1.28",
|
|
90
90
|
next: "15.3.3",
|
|
91
|
-
postcss: "^8.5.
|
|
91
|
+
postcss: "^8.5.5",
|
|
92
92
|
react: "^19.1.0",
|
|
93
93
|
"react-dom": "^19.1.0",
|
|
94
|
-
"react-router": "^7.6.
|
|
94
|
+
"react-router": "^7.6.2",
|
|
95
95
|
"react-router-devtools": "^5.0.6",
|
|
96
|
-
shiki: "^3.
|
|
97
|
-
tailwindcss: "^4.1.
|
|
96
|
+
shiki: "^3.6.0",
|
|
97
|
+
tailwindcss: "^4.1.10",
|
|
98
98
|
tinyglobby: "^0.2.14",
|
|
99
99
|
typescript: "^5.8.3",
|
|
100
|
-
vinxi: "^0.5.
|
|
100
|
+
vinxi: "^0.5.7",
|
|
101
101
|
vite: "^6.3.5",
|
|
102
102
|
"vite-tsconfig-paths": "^5.1.4"
|
|
103
103
|
}
|
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": "15.5.
|
|
3
|
+
"version": "15.5.2",
|
|
4
4
|
"description": "Create a new documentation site with Fumadocs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/cross-spawn": "^6.0.6",
|
|
30
|
-
"@types/node": "
|
|
30
|
+
"@types/node": "24.0.1",
|
|
31
31
|
"tinyglobby": "^0.2.14",
|
|
32
32
|
"eslint-config-custom": "0.0.0",
|
|
33
33
|
"tsconfig": "0.0.0"
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { type ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
createRootRoute,
|
|
4
|
+
HeadContent,
|
|
5
|
+
Outlet,
|
|
6
|
+
Scripts,
|
|
7
|
+
} from '@tanstack/react-router';
|
|
3
8
|
import { RootProvider } from 'fumadocs-ui/provider/base';
|
|
4
9
|
import appCss from '../app.css?url';
|
|
5
10
|
import { TanstackProvider } from 'fumadocs-core/framework/tanstack';
|
|
6
|
-
import { Scripts } from '@tanstack/react-router';
|
|
7
11
|
|
|
8
12
|
export const Route = createRootRoute({
|
|
9
13
|
head: () => ({
|
|
@@ -38,7 +42,7 @@ function RootDocument({ children }: Readonly<{ children: ReactNode }>) {
|
|
|
38
42
|
<head>
|
|
39
43
|
<HeadContent />
|
|
40
44
|
</head>
|
|
41
|
-
<body>
|
|
45
|
+
<body className="flex flex-col min-h-screen">
|
|
42
46
|
<TanstackProvider>
|
|
43
47
|
<RootProvider>{children}</RootProvider>
|
|
44
48
|
</TanstackProvider>
|