create-fumadocs-app 15.3.3 → 15.4.0

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.3.3", "fumadocs-ui": "15.3.3", "fumadocs-mdx": "11.6.4", "@fumadocs/mdx-remote": "1.3.1", "@fumadocs/content-collections": "1.1.8" };
63
+ var versions = { "fumadocs-core": "15.4.0", "fumadocs-ui": "15.4.0", "fumadocs-mdx": "11.6.6", "@fumadocs/mdx-remote": "1.3.2", "@fumadocs/content-collections": "1.2.0" };
64
64
 
65
65
  // ../create-app-versions/package.json
66
66
  var package_default = {
@@ -78,14 +78,13 @@ var package_default = {
78
78
  "@react-router/serve": "^7.6.0",
79
79
  "@tailwindcss/postcss": "^4.1.7",
80
80
  "@tailwindcss/vite": "^4.1.7",
81
- "@tanstack/react-router": "^1.120.3",
82
- "@tanstack/react-start": "^1.120.3",
81
+ "@tanstack/react-router": "^1.120.9",
82
+ "@tanstack/react-start": "^1.120.9",
83
83
  "@types/mdx": "^2.0.13",
84
- "@types/node": "22.15.18",
85
- "@types/react": "^19.1.4",
84
+ "@types/node": "22.15.21",
85
+ "@types/react": "^19.1.5",
86
86
  "@types/react-dom": "^19.1.5",
87
- "@vitejs/plugin-react": "^4.4.1",
88
- "fast-glob": "^3.3.3",
87
+ "@vitejs/plugin-react": "^4.5.0",
89
88
  "gray-matter": "^4.0.3",
90
89
  isbot: "^5.1.28",
91
90
  next: "15.3.2",
@@ -93,9 +92,10 @@ var package_default = {
93
92
  react: "^19.1.0",
94
93
  "react-dom": "^19.1.0",
95
94
  "react-router": "^7.6.0",
96
- "react-router-devtools": "^5.0.5",
95
+ "react-router-devtools": "^5.0.6",
97
96
  shiki: "^3.4.2",
98
97
  tailwindcss: "^4.1.7",
98
+ tinyglobby: "^0.2.13",
99
99
  typescript: "^5.8.3",
100
100
  vinxi: "^0.5.6",
101
101
  vite: "^6.3.5",
@@ -299,7 +299,7 @@ function createPackageJson(projectName, options) {
299
299
  ...pick(package_default.dependencies, [
300
300
  "@tanstack/react-router",
301
301
  "@tanstack/react-start",
302
- "fast-glob",
302
+ "tinyglobby",
303
303
  "gray-matter",
304
304
  "react",
305
305
  "react-dom",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  create
3
- } from "./chunk-WTTJHYSR.js";
3
+ } from "./chunk-UXXP3FHN.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-WTTJHYSR.js";
6
+ } from "./chunk-UXXP3FHN.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.3.3",
3
+ "version": "15.4.0",
4
4
  "description": "Create a new documentation site with Fumadocs",
5
5
  "keywords": [
6
6
  "NextJs",
@@ -21,14 +21,14 @@
21
21
  "dist/*"
22
22
  ],
23
23
  "dependencies": {
24
- "@clack/prompts": "^0.10.1",
24
+ "@clack/prompts": "^0.11.0",
25
25
  "cross-spawn": "^7.0.6",
26
26
  "picocolors": "^1.1.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/cross-spawn": "^6.0.6",
30
- "@types/node": "22.15.18",
31
- "fast-glob": "^3.3.3",
30
+ "@types/node": "22.15.21",
31
+ "tinyglobby": "^0.2.13",
32
32
  "eslint-config-custom": "0.0.0",
33
33
  "tsconfig": "0.0.0"
34
34
  },
@@ -7,7 +7,7 @@ import {
7
7
  } from 'fumadocs-core/source';
8
8
  import matter from 'gray-matter';
9
9
  import * as path from 'node:path';
10
- import FastGlob from 'fast-glob';
10
+ import { globSync } from 'tinyglobby';
11
11
  import * as fs from 'node:fs';
12
12
 
13
13
  let files: [string, string][];
@@ -21,7 +21,7 @@ if (typeof import.meta.glob === 'function') {
21
21
  }),
22
22
  );
23
23
  } else {
24
- files = FastGlob.sync('content/docs/**/*').map((file) => {
24
+ files = globSync('content/docs/**/*').map((file) => {
25
25
  return [file, fs.readFileSync(file).toString()];
26
26
  });
27
27
  }