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.
|
|
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.
|
|
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.
|
|
91
|
-
next: "15.
|
|
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.
|
|
97
|
+
shiki: "^3.2.2",
|
|
98
98
|
tailwindcss: "^4.1.3",
|
|
99
99
|
typescript: "^5.8.3",
|
|
100
|
-
vinxi: "^0.5.
|
|
101
|
-
vite: "^6.2.
|
|
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 };
|
package/dist/create-app.js
CHANGED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fumadocs-app",
|
|
3
|
-
"version": "15.2.
|
|
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
|
-
"
|
|
33
|
-
"
|
|
32
|
+
"eslint-config-custom": "0.0.0",
|
|
33
|
+
"tsconfig": "0.0.0"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=18.17.0"
|