create-fumadocs-app 15.8.2 → 15.8.4
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.
|
@@ -59,7 +59,7 @@ async function tryGitInit(cwd2) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
// src/versions.js
|
|
62
|
-
var versions = { "fumadocs-core": "15.8.
|
|
62
|
+
var versions = { "fumadocs-core": "15.8.4", "fumadocs-ui": "15.8.4", "fumadocs-mdx": "12.0.3", "@fumadocs/mdx-remote": "1.4.2", "@fumadocs/content-collections": "1.2.3" };
|
|
63
63
|
|
|
64
64
|
// ../create-app-versions/package.json
|
|
65
65
|
var package_default = {
|
|
@@ -68,37 +68,37 @@ var package_default = {
|
|
|
68
68
|
private: true,
|
|
69
69
|
description: "Used to track dependency versions in create-fumadocs-app",
|
|
70
70
|
dependencies: {
|
|
71
|
-
"@biomejs/biome": "^2.2.
|
|
71
|
+
"@biomejs/biome": "^2.2.5",
|
|
72
72
|
"@content-collections/core": "^0.11.1",
|
|
73
73
|
"@content-collections/mdx": "^0.2.2",
|
|
74
74
|
"@content-collections/next": "^0.2.7",
|
|
75
75
|
"@react-router/dev": "^7.9.3",
|
|
76
76
|
"@react-router/node": "^7.9.3",
|
|
77
77
|
"@react-router/serve": "^7.9.3",
|
|
78
|
-
"@tailwindcss/postcss": "^4.1.
|
|
79
|
-
"@tailwindcss/vite": "^4.1.
|
|
80
|
-
"@tanstack/react-router": "^1.132.
|
|
81
|
-
"@tanstack/react-start": "^1.132.
|
|
78
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
79
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
80
|
+
"@tanstack/react-router": "^1.132.33",
|
|
81
|
+
"@tanstack/react-start": "^1.132.36",
|
|
82
82
|
"@types/mdx": "^2.0.13",
|
|
83
|
-
"@types/node": "24.
|
|
84
|
-
"@types/react": "^19.
|
|
85
|
-
"@types/react-dom": "^19.
|
|
86
|
-
"@vitejs/plugin-react": "^5.0.
|
|
83
|
+
"@types/node": "24.6.2",
|
|
84
|
+
"@types/react": "^19.2.0",
|
|
85
|
+
"@types/react-dom": "^19.2.0",
|
|
86
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
87
87
|
"gray-matter": "^4.0.3",
|
|
88
88
|
isbot: "^5.1.31",
|
|
89
89
|
"lucide-react": "^0.544.0",
|
|
90
90
|
next: "15.5.4",
|
|
91
91
|
postcss: "^8.5.6",
|
|
92
|
-
react: "^19.
|
|
93
|
-
"react-dom": "^19.
|
|
92
|
+
react: "^19.2.0",
|
|
93
|
+
"react-dom": "^19.2.0",
|
|
94
94
|
"react-router": "^7.9.3",
|
|
95
95
|
"react-router-devtools": "^5.1.3",
|
|
96
96
|
shiki: "^3.13.0",
|
|
97
|
-
tailwindcss: "^4.1.
|
|
97
|
+
tailwindcss: "^4.1.14",
|
|
98
98
|
tinyglobby: "^0.2.15",
|
|
99
|
-
typescript: "^5.9.
|
|
99
|
+
typescript: "^5.9.3",
|
|
100
100
|
vinxi: "^0.5.8",
|
|
101
|
-
vite: "^7.1.
|
|
101
|
+
vite: "^7.1.9",
|
|
102
102
|
"vite-tsconfig-paths": "^5.1.4"
|
|
103
103
|
}
|
|
104
104
|
};
|
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.8.
|
|
3
|
+
"version": "15.8.4",
|
|
4
4
|
"description": "Create a new documentation site with Fumadocs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/cross-spawn": "^6.0.6",
|
|
31
|
-
"@types/node": "24.
|
|
31
|
+
"@types/node": "24.6.2",
|
|
32
32
|
"tinyglobby": "^0.2.15",
|
|
33
|
-
"typescript": "^5.9.
|
|
33
|
+
"typescript": "^5.9.3",
|
|
34
34
|
"eslint-config-custom": "0.0.0",
|
|
35
35
|
"tsconfig": "0.0.0"
|
|
36
36
|
},
|
|
@@ -9,27 +9,27 @@
|
|
|
9
9
|
"typecheck": "react-router typegen && tsc"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@react-router/node": "^7.
|
|
13
|
-
"@react-router/serve": "^7.
|
|
12
|
+
"@react-router/node": "^7.9.3",
|
|
13
|
+
"@react-router/serve": "^7.9.3",
|
|
14
14
|
"fumadocs-core": "workspace:*",
|
|
15
15
|
"fumadocs-mdx": "workspace:*",
|
|
16
16
|
"fumadocs-ui": "workspace:*",
|
|
17
|
-
"isbot": "^5.1.
|
|
18
|
-
"react": "^19.
|
|
19
|
-
"react-dom": "^19.
|
|
20
|
-
"react-router": "^7.
|
|
17
|
+
"isbot": "^5.1.31",
|
|
18
|
+
"react": "^19.2.0",
|
|
19
|
+
"react-dom": "^19.2.0",
|
|
20
|
+
"react-router": "^7.9.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@react-router/dev": "^7.
|
|
24
|
-
"@tailwindcss/vite": "^4.1.
|
|
23
|
+
"@react-router/dev": "^7.9.3",
|
|
24
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
25
25
|
"@types/mdx": "^2.0.13",
|
|
26
|
-
"@types/node": "^24.
|
|
27
|
-
"@types/react": "^19.
|
|
28
|
-
"@types/react-dom": "^19.
|
|
26
|
+
"@types/node": "^24.6.2",
|
|
27
|
+
"@types/react": "^19.2.0",
|
|
28
|
+
"@types/react-dom": "^19.2.0",
|
|
29
29
|
"react-router-devtools": "^5.1.3",
|
|
30
|
-
"tailwindcss": "^4.1.
|
|
31
|
-
"typescript": "^5.9.
|
|
32
|
-
"vite": "^7.1.
|
|
30
|
+
"tailwindcss": "^4.1.14",
|
|
31
|
+
"typescript": "^5.9.3",
|
|
32
|
+
"vite": "^7.1.9",
|
|
33
33
|
"vite-tsconfig-paths": "^5.1.4"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -9,27 +9,27 @@
|
|
|
9
9
|
"start": "node .output/server/index.mjs"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@tanstack/react-router": "^1.132.
|
|
13
|
-
"@tanstack/react-router-devtools": "^1.132.
|
|
14
|
-
"@tanstack/react-start": "^1.132.
|
|
12
|
+
"@tanstack/react-router": "^1.132.33",
|
|
13
|
+
"@tanstack/react-router-devtools": "^1.132.33",
|
|
14
|
+
"@tanstack/react-start": "^1.132.36",
|
|
15
15
|
"fumadocs-core": "workspace:*",
|
|
16
16
|
"fumadocs-mdx": "workspace:*",
|
|
17
17
|
"fumadocs-ui": "workspace:*",
|
|
18
18
|
"lucide-static": "^0.544.0",
|
|
19
|
-
"react": "^19.
|
|
20
|
-
"react-dom": "^19.
|
|
19
|
+
"react": "^19.2.0",
|
|
20
|
+
"react-dom": "^19.2.0",
|
|
21
21
|
"tailwind-merge": "^3.3.1",
|
|
22
|
-
"vite": "^7.1.
|
|
22
|
+
"vite": "^7.1.9"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@tailwindcss/vite": "^4.1.
|
|
25
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
26
26
|
"@types/mdx": "^2.0.13",
|
|
27
|
-
"@types/node": "^24.
|
|
28
|
-
"@types/react": "^19.
|
|
29
|
-
"@types/react-dom": "^19.
|
|
30
|
-
"@vitejs/plugin-react": "^5.0.
|
|
31
|
-
"tailwindcss": "^4.1.
|
|
32
|
-
"typescript": "^5.9.
|
|
27
|
+
"@types/node": "^24.6.2",
|
|
28
|
+
"@types/react": "^19.2.0",
|
|
29
|
+
"@types/react-dom": "^19.2.0",
|
|
30
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
31
|
+
"tailwindcss": "^4.1.14",
|
|
32
|
+
"typescript": "^5.9.3",
|
|
33
33
|
"vite-tsconfig-paths": "^5.1.4"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -12,20 +12,20 @@
|
|
|
12
12
|
"fumadocs-core": "workspace:*",
|
|
13
13
|
"fumadocs-mdx": "workspace:*",
|
|
14
14
|
"fumadocs-ui": "workspace:*",
|
|
15
|
-
"react": "^19.
|
|
16
|
-
"react-dom": "^19.
|
|
17
|
-
"react-server-dom-webpack": "^19.
|
|
18
|
-
"waku": "^0.26.
|
|
15
|
+
"react": "^19.2.0",
|
|
16
|
+
"react-dom": "^19.2.0",
|
|
17
|
+
"react-server-dom-webpack": "^19.2.0",
|
|
18
|
+
"waku": "^0.26.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tailwindcss/vite": "^4.1.
|
|
21
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
22
22
|
"@types/mdx": "^2.0.13",
|
|
23
|
-
"@types/node": "^24.
|
|
24
|
-
"@types/react": "^19.
|
|
25
|
-
"@types/react-dom": "^19.
|
|
26
|
-
"tailwindcss": "^4.1.
|
|
27
|
-
"typescript": "^5.9.
|
|
28
|
-
"vite": "^7.1.
|
|
23
|
+
"@types/node": "^24.6.2",
|
|
24
|
+
"@types/react": "^19.2.0",
|
|
25
|
+
"@types/react-dom": "^19.2.0",
|
|
26
|
+
"tailwindcss": "^4.1.14",
|
|
27
|
+
"typescript": "^5.9.3",
|
|
28
|
+
"vite": "^7.1.9",
|
|
29
29
|
"vite-tsconfig-paths": "^5.1.4"
|
|
30
30
|
}
|
|
31
31
|
}
|