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.0", "fumadocs-ui": "15.5.0", "fumadocs-mdx": "11.6.6", "@fumadocs/mdx-remote": "1.3.2", "@fumadocs/content-collections": "1.2.0" };
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.1",
77
- "@react-router/node": "^7.6.1",
78
- "@react-router/serve": "^7.6.1",
79
- "@tailwindcss/postcss": "^4.1.8",
80
- "@tailwindcss/vite": "^4.1.8",
81
- "@tanstack/react-router": "^1.120.12",
82
- "@tanstack/react-start": "^1.120.12",
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": "22.15.28",
85
- "@types/react": "^19.1.6",
86
- "@types/react-dom": "^19.1.5",
87
- "@vitejs/plugin-react": "^4.5.0",
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.4",
91
+ postcss: "^8.5.5",
92
92
  react: "^19.1.0",
93
93
  "react-dom": "^19.1.0",
94
- "react-router": "^7.6.1",
94
+ "react-router": "^7.6.2",
95
95
  "react-router-devtools": "^5.0.6",
96
- shiki: "^3.4.2",
97
- tailwindcss: "^4.1.8",
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.6",
100
+ vinxi: "^0.5.7",
101
101
  vite: "^6.3.5",
102
102
  "vite-tsconfig-paths": "^5.1.4"
103
103
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  create
3
- } from "./chunk-X47EJZIP.js";
3
+ } from "./chunk-SIGIGNB3.js";
4
4
  export {
5
5
  create
6
6
  };
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  create,
4
4
  cwd,
5
5
  getPackageManager
6
- } from "./chunk-X47EJZIP.js";
6
+ } from "./chunk-SIGIGNB3.js";
7
7
 
8
8
  // src/index.ts
9
9
  import fs from "fs/promises";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fumadocs-app",
3
- "version": "15.5.0",
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": "22.15.28",
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"
@@ -33,7 +33,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
33
33
  <Meta />
34
34
  <Links />
35
35
  </head>
36
- <body>
36
+ <body className="flex flex-col min-h-screen">
37
37
  <ReactRouterProvider>
38
38
  <RootProvider>{children}</RootProvider>
39
39
  </ReactRouterProvider>
@@ -1,9 +1,13 @@
1
1
  import { type ReactNode } from 'react';
2
- import { Outlet, createRootRoute, HeadContent } from '@tanstack/react-router';
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>