create-fumadocs-app 15.2.6 → 15.2.7

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.2.6", "fumadocs-ui": "15.2.6", "fumadocs-mdx": "11.5.8", "@fumadocs/mdx-remote": "1.3.0", "@fumadocs/content-collections": "1.1.8" };
63
+ var versions = { "fumadocs-core": "15.2.7", "fumadocs-ui": "15.2.7", "fumadocs-mdx": "11.6.0", "@fumadocs/mdx-remote": "1.3.0", "@fumadocs/content-collections": "1.1.8" };
64
64
 
65
65
  // ../create-app-versions/package.json
66
66
  var package_default = {
@@ -83,22 +83,22 @@ var package_default = {
83
83
  "@types/mdx": "^2.0.13",
84
84
  "@types/node": "22.14.0",
85
85
  "@types/react": "^19.1.0",
86
- "@types/react-dom": "^19.1.1",
86
+ "@types/react-dom": "^19.1.2",
87
87
  "@vitejs/plugin-react": "^4.3.4",
88
88
  "fast-glob": "^3.3.3",
89
89
  "gray-matter": "^4.0.3",
90
- isbot: "^5.1.17",
91
- next: "15.2.4",
90
+ isbot: "^5.1.26",
91
+ next: "15.3.0",
92
92
  postcss: "^8.5.3",
93
93
  react: "^19.1.0",
94
94
  "react-dom": "^19.1.0",
95
95
  "react-router": "^7.5.0",
96
96
  "react-router-devtools": "^1.1.10",
97
- shiki: "^3.2.1",
97
+ shiki: "^3.2.2",
98
98
  tailwindcss: "^4.1.3",
99
99
  typescript: "^5.8.3",
100
- vinxi: "^0.5.3",
101
- vite: "^6.2.5",
100
+ vinxi: "^0.5.4",
101
+ vite: "^6.2.6",
102
102
  "vite-tsconfig-paths": "^5.1.4"
103
103
  }
104
104
  };
@@ -0,0 +1,35 @@
1
+ type PackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun';
2
+
3
+ type Template = '+next+content-collections' | '+next+fuma-docs-mdx' | 'react-router' | 'tanstack-start';
4
+ interface Options {
5
+ outputDir: string;
6
+ template: Template;
7
+ /**
8
+ * the package manager to use
9
+ */
10
+ packageManager: PackageManager;
11
+ /**
12
+ * Create files inside `src`
13
+ *
14
+ * (Next.js only)
15
+ */
16
+ useSrcDir?: boolean;
17
+ /**
18
+ * Configure Tailwind CSS
19
+ *
20
+ * (Next.js only)
21
+ */
22
+ tailwindcss: boolean;
23
+ /**
24
+ * Configure Next.js ESLint plugin
25
+ *
26
+ * (Next.js only)
27
+ */
28
+ eslint?: boolean;
29
+ installDeps?: boolean;
30
+ initializeGit?: boolean;
31
+ log?: (message: string) => void;
32
+ }
33
+ declare function create(options: Options): Promise<void>;
34
+
35
+ export { type Options, type Template, create };
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  create
3
- } from "./chunk-DE4IQCMH.js";
3
+ } from "./chunk-TMJ6YSJY.js";
4
4
  export {
5
5
  create
6
6
  };
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  create,
4
4
  cwd,
5
5
  getPackageManager
6
- } from "./chunk-DE4IQCMH.js";
6
+ } from "./chunk-TMJ6YSJY.js";
7
7
 
8
8
  // src/index.ts
9
9
  import fs from "node:fs/promises";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fumadocs-app",
3
- "version": "15.2.6",
3
+ "version": "15.2.7",
4
4
  "description": "Create a new documentation site with Fumadocs",
5
5
  "keywords": [
6
6
  "NextJs",
@@ -29,8 +29,8 @@
29
29
  "@types/cross-spawn": "^6.0.6",
30
30
  "@types/node": "22.14.0",
31
31
  "fast-glob": "^3.3.3",
32
- "tsconfig": "0.0.0",
33
- "eslint-config-custom": "0.0.0"
32
+ "eslint-config-custom": "0.0.0",
33
+ "tsconfig": "0.0.0"
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=18.17.0"