create-fumapress 0.1.7 → 0.1.8
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 +17 -18
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -6,28 +6,27 @@ import { Command } from "commander";
|
|
|
6
6
|
import { x } from "tinyexec";
|
|
7
7
|
//#region ../create-fumapress-versions/package.json
|
|
8
8
|
var dependencies = {
|
|
9
|
-
"@base-ui/react": "^1.
|
|
10
|
-
"fumadocs-core": "^16.14.
|
|
11
|
-
"fumadocs-mdx": "^15.2.
|
|
12
|
-
"fumadocs-ui": "npm:@fumadocs/base-ui@^16.14.
|
|
9
|
+
"@base-ui/react": "^1.7.0",
|
|
10
|
+
"fumadocs-core": "^16.14.4",
|
|
11
|
+
"fumadocs-mdx": "^15.2.3",
|
|
12
|
+
"fumadocs-ui": "npm:@fumadocs/base-ui@^16.14.4",
|
|
13
13
|
"fumapress": "workspace:*",
|
|
14
14
|
"react": "^19.2.8",
|
|
15
|
-
"react-dom": "^19.2.8"
|
|
16
|
-
"react-server-dom-webpack": "^19.2.8",
|
|
17
|
-
"waku": "1.0.0-beta.8"
|
|
15
|
+
"react-dom": "^19.2.8"
|
|
18
16
|
};
|
|
19
17
|
var devDependencies = {
|
|
20
18
|
"@tailwindcss/vite": "^4.3.3",
|
|
21
19
|
"@types/mdx": "^2.0.14",
|
|
22
|
-
"@types/node": "^26.
|
|
20
|
+
"@types/node": "^26.2.0",
|
|
23
21
|
"@types/react": "^19.2.18",
|
|
24
22
|
"@types/react-dom": "^19.2.4",
|
|
25
23
|
"tailwindcss": "^4.3.3",
|
|
26
|
-
"typescript": "^6.0.3"
|
|
24
|
+
"typescript": "^6.0.3",
|
|
25
|
+
"vite": "^8.2.1"
|
|
27
26
|
};
|
|
28
27
|
//#endregion
|
|
29
28
|
//#region ../core/package.json
|
|
30
|
-
var version = "1.0.0
|
|
29
|
+
var version = "1.0.0";
|
|
31
30
|
//#endregion
|
|
32
31
|
//#region src/index.ts
|
|
33
32
|
const packageManagers = [
|
|
@@ -118,7 +117,7 @@ src/pages.gen.ts
|
|
|
118
117
|
`,
|
|
119
118
|
"README.md": `# ${name}
|
|
120
119
|
|
|
121
|
-
This is a Fumapress app powered by
|
|
120
|
+
This is a Fumapress app powered by Fumadocs.
|
|
122
121
|
|
|
123
122
|
## Development
|
|
124
123
|
|
|
@@ -163,6 +162,8 @@ export default defineConfig({
|
|
|
163
162
|
content: docs.toFumadocsSource(),
|
|
164
163
|
site: {
|
|
165
164
|
name: "Fumapress",
|
|
165
|
+
// the URL where your site is deployed, needed for SEO features like sitemap:
|
|
166
|
+
// baseUrl: "https://example.com",
|
|
166
167
|
},
|
|
167
168
|
meta: {
|
|
168
169
|
root() {
|
|
@@ -192,15 +193,13 @@ export default defineConfig({
|
|
|
192
193
|
}
|
|
193
194
|
`,
|
|
194
195
|
"tsconfig.json": `${JSON.stringify(getTsConfig(), null, 2)}\n`,
|
|
195
|
-
"
|
|
196
|
+
"vite.config.ts": `import { defineConfig } from "vite";
|
|
196
197
|
import tailwindcss from "@tailwindcss/vite";
|
|
197
198
|
import press from "fumapress/vite";
|
|
198
199
|
import { fumadocsMdx } from "fumadocs-mdx/vite";
|
|
199
200
|
|
|
200
201
|
export default defineConfig({
|
|
201
|
-
|
|
202
|
-
plugins: [press(), fumadocsMdx(), tailwindcss()],
|
|
203
|
-
},
|
|
202
|
+
plugins: [press(), fumadocsMdx(), tailwindcss()],
|
|
204
203
|
});
|
|
205
204
|
`
|
|
206
205
|
};
|
|
@@ -212,9 +211,9 @@ function getPackageJson(name) {
|
|
|
212
211
|
type: "module",
|
|
213
212
|
sideEffects: false,
|
|
214
213
|
scripts: {
|
|
215
|
-
dev: "
|
|
216
|
-
build: "
|
|
217
|
-
start: "
|
|
214
|
+
dev: "fumapress dev",
|
|
215
|
+
build: "fumapress build",
|
|
216
|
+
start: "fumapress start",
|
|
218
217
|
"types:check": "tsc --noEmit"
|
|
219
218
|
},
|
|
220
219
|
dependencies: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fumapress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Initialize a Fumapress app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tinyexec": "^1.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "^26.
|
|
35
|
+
"@types/node": "^26.2.0",
|
|
36
36
|
"tsdown": "0.22.14",
|
|
37
37
|
"typescript": "^6.0.3"
|
|
38
38
|
},
|