create-fumapress 0.0.4 → 0.0.6
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 +9 -8
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -6,27 +6,28 @@ 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.8.
|
|
10
|
-
"fumadocs-mdx": "^15.0.
|
|
11
|
-
"fumadocs-ui": "^16.8.
|
|
9
|
+
"fumadocs-core": "^16.8.11",
|
|
10
|
+
"fumadocs-mdx": "^15.0.6",
|
|
11
|
+
"fumadocs-ui": "^16.8.11",
|
|
12
12
|
"fumapress": "workspace:*",
|
|
13
13
|
"react": "^19.2.6",
|
|
14
14
|
"react-dom": "^19.2.6",
|
|
15
15
|
"react-server-dom-webpack": "^19.2.6",
|
|
16
|
-
"waku": "1.0.0-
|
|
16
|
+
"waku": "1.0.0-beta.0"
|
|
17
17
|
};
|
|
18
18
|
var devDependencies = {
|
|
19
19
|
"@tailwindcss/vite": "^4.3.0",
|
|
20
20
|
"@types/mdx": "^2.0.13",
|
|
21
|
-
"@types/node": "^25.
|
|
21
|
+
"@types/node": "^25.8.0",
|
|
22
22
|
"@types/react": "^19.2.14",
|
|
23
23
|
"@types/react-dom": "^19.2.3",
|
|
24
24
|
"tailwindcss": "^4.3.0",
|
|
25
|
-
"typescript": "^6.0.3"
|
|
25
|
+
"typescript": "^6.0.3",
|
|
26
|
+
"vite": "^8.0.13"
|
|
26
27
|
};
|
|
27
28
|
//#endregion
|
|
28
29
|
//#region ../core/package.json
|
|
29
|
-
var version = "0.
|
|
30
|
+
var version = "0.3.1";
|
|
30
31
|
//#endregion
|
|
31
32
|
//#region src/index.ts
|
|
32
33
|
const packageManagers = [
|
|
@@ -155,7 +156,7 @@ export default defineConfig({
|
|
|
155
156
|
.useAdapters(fumadocsMdx());
|
|
156
157
|
`,
|
|
157
158
|
"source.config.ts": `import { defineDocs } from "fumadocs-mdx/config";
|
|
158
|
-
import { metaSchema, pageSchema } from "
|
|
159
|
+
import { metaSchema, pageSchema } from "fumapress/adapters/mdx/schema";
|
|
159
160
|
|
|
160
161
|
export const docs = defineDocs({
|
|
161
162
|
dir: "content",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fumapress",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Initialize a Fumapress app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tinyexec": "^1.1.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "^25.
|
|
35
|
+
"@types/node": "^25.8.0",
|
|
36
36
|
"tsdown": "0.22.0",
|
|
37
37
|
"typescript": "^6.0.3"
|
|
38
38
|
},
|