create-fumapress 0.0.8 → 0.0.9
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.
- package/dist/index.mjs +8 -12
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6,9 +6,9 @@ import { Command } from "commander";
|
|
|
6
6
|
import { x } from "tinyexec";
|
|
7
7
|
//#region ../create-fumapress-versions/package.json
|
|
8
8
|
var dependencies = {
|
|
9
|
-
"fumadocs-core": "^16.9.
|
|
10
|
-
"fumadocs-mdx": "^15.0.
|
|
11
|
-
"fumadocs-ui": "^16.9.
|
|
9
|
+
"fumadocs-core": "^16.9.3",
|
|
10
|
+
"fumadocs-mdx": "^15.0.10",
|
|
11
|
+
"fumadocs-ui": "^16.9.3",
|
|
12
12
|
"fumapress": "workspace:*",
|
|
13
13
|
"react": "^19.2.6",
|
|
14
14
|
"react-dom": "^19.2.6",
|
|
@@ -22,12 +22,11 @@ var devDependencies = {
|
|
|
22
22
|
"@types/react": "^19.2.15",
|
|
23
23
|
"@types/react-dom": "^19.2.3",
|
|
24
24
|
"tailwindcss": "^4.3.0",
|
|
25
|
-
"typescript": "^6.0.3"
|
|
26
|
-
"vite": "^8.0.14"
|
|
25
|
+
"typescript": "^6.0.3"
|
|
27
26
|
};
|
|
28
27
|
//#endregion
|
|
29
28
|
//#region ../core/package.json
|
|
30
|
-
var version = "0.5.
|
|
29
|
+
var version = "0.5.1";
|
|
31
30
|
//#endregion
|
|
32
31
|
//#region src/index.ts
|
|
33
32
|
const packageManagers = [
|
|
@@ -141,19 +140,16 @@ import { fumadocsMdx } from "fumapress/adapters/mdx";
|
|
|
141
140
|
import { flexsearchPlugin } from "fumapress/plugins/flexsearch";
|
|
142
141
|
import { llmsPlugin } from "fumapress/plugins/llms.txt";
|
|
143
142
|
import { takumiPlugin } from "fumapress/plugins/takumi";
|
|
144
|
-
import { loader } from "fumadocs-core/source";
|
|
145
143
|
import { docs } from "./.source/server";
|
|
146
144
|
|
|
147
145
|
export default defineConfig({
|
|
148
|
-
|
|
149
|
-
baseUrl: "/",
|
|
150
|
-
}),
|
|
146
|
+
content: docs.toFumadocsSource(),
|
|
151
147
|
site: {
|
|
152
148
|
name: "Fumapress",
|
|
153
149
|
},
|
|
154
150
|
})
|
|
155
|
-
.
|
|
156
|
-
.
|
|
151
|
+
.plugins(flexsearchPlugin(), llmsPlugin(), takumiPlugin())
|
|
152
|
+
.adapters(fumadocsMdx());
|
|
157
153
|
`,
|
|
158
154
|
"source.config.ts": `import { defineDocs } from "fumadocs-mdx/config";
|
|
159
155
|
import { metaSchema, pageSchema } from "fumapress/adapters/mdx/schema";
|