create-fumapress 0.0.17 → 0.1.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.
- package/dist/index.mjs +25 -5
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -6,9 +6,10 @@ import { Command } from "commander";
|
|
|
6
6
|
import { x } from "tinyexec";
|
|
7
7
|
//#region ../create-fumapress-versions/package.json
|
|
8
8
|
var dependencies = {
|
|
9
|
-
"
|
|
10
|
-
"fumadocs-
|
|
11
|
-
"fumadocs-
|
|
9
|
+
"@base-ui/react": "^1.6.0",
|
|
10
|
+
"fumadocs-core": "^16.11.0",
|
|
11
|
+
"fumadocs-mdx": "^15.1.0",
|
|
12
|
+
"fumadocs-ui": "npm:@fumadocs/base-ui@^16.11.0",
|
|
12
13
|
"fumapress": "workspace:*",
|
|
13
14
|
"react": "^19.2.7",
|
|
14
15
|
"react-dom": "^19.2.7",
|
|
@@ -18,7 +19,7 @@ var dependencies = {
|
|
|
18
19
|
var devDependencies = {
|
|
19
20
|
"@tailwindcss/vite": "^4.3.2",
|
|
20
21
|
"@types/mdx": "^2.0.14",
|
|
21
|
-
"@types/node": "^26.0
|
|
22
|
+
"@types/node": "^26.1.0",
|
|
22
23
|
"@types/react": "^19.2.17",
|
|
23
24
|
"@types/react-dom": "^19.2.3",
|
|
24
25
|
"tailwindcss": "^4.3.2",
|
|
@@ -26,7 +27,7 @@ var devDependencies = {
|
|
|
26
27
|
};
|
|
27
28
|
//#endregion
|
|
28
29
|
//#region ../core/package.json
|
|
29
|
-
var version = "0.
|
|
30
|
+
var version = "0.7.0";
|
|
30
31
|
//#endregion
|
|
31
32
|
//#region src/index.ts
|
|
32
33
|
const packageManagers = [
|
|
@@ -147,6 +148,20 @@ export default defineConfig({
|
|
|
147
148
|
site: {
|
|
148
149
|
name: "Fumapress",
|
|
149
150
|
},
|
|
151
|
+
meta: {
|
|
152
|
+
root() {
|
|
153
|
+
return (
|
|
154
|
+
<>
|
|
155
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
156
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
|
|
157
|
+
<link
|
|
158
|
+
href="https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
|
|
159
|
+
rel="stylesheet"
|
|
160
|
+
/>
|
|
161
|
+
</>
|
|
162
|
+
);
|
|
163
|
+
},
|
|
164
|
+
},
|
|
150
165
|
})
|
|
151
166
|
.plugins(flexsearchPlugin(), llmsPlugin(), takumiPlugin())
|
|
152
167
|
.adapters(fumadocsMdx());
|
|
@@ -172,6 +187,11 @@ export const docs = defineDocs({
|
|
|
172
187
|
@import "fumadocs-ui/css/neutral.css";
|
|
173
188
|
@import "fumadocs-ui/css/preset.css";
|
|
174
189
|
@import "fumapress/css/preset.css";
|
|
190
|
+
|
|
191
|
+
@theme {
|
|
192
|
+
--font-mono: "JetBrains Mono", monospace;
|
|
193
|
+
--default-font-family: "Geist", sans-serif;
|
|
194
|
+
}
|
|
175
195
|
`,
|
|
176
196
|
"tsconfig.json": `${JSON.stringify(getTsConfig(), null, 2)}\n`,
|
|
177
197
|
"waku.config.ts": `import { defineConfig } from "waku/config";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fumapress",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Initialize a Fumapress app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clack/prompts": "^1.
|
|
30
|
+
"@clack/prompts": "^1.7.0",
|
|
31
31
|
"commander": "^15.0.0",
|
|
32
32
|
"tinyexec": "^1.2.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "^26.0
|
|
35
|
+
"@types/node": "^26.1.0",
|
|
36
36
|
"tsdown": "0.22.3",
|
|
37
37
|
"typescript": "^6.0.3"
|
|
38
38
|
},
|