create-fumapress 0.0.1 → 0.0.3
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 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ var dependencies = {
|
|
|
9
9
|
"fumadocs-core": "^16.8.10",
|
|
10
10
|
"fumadocs-mdx": "^15.0.4",
|
|
11
11
|
"fumadocs-ui": "^16.8.10",
|
|
12
|
-
"fumapress": "
|
|
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",
|
|
@@ -25,6 +25,9 @@ var devDependencies = {
|
|
|
25
25
|
"typescript": "^6.0.3"
|
|
26
26
|
};
|
|
27
27
|
//#endregion
|
|
28
|
+
//#region ../press-core/package.json
|
|
29
|
+
var version = "0.2.4";
|
|
30
|
+
//#endregion
|
|
28
31
|
//#region src/index.ts
|
|
29
32
|
const packageManagers = [
|
|
30
33
|
"npm",
|
|
@@ -199,7 +202,10 @@ function getPackageJson(name) {
|
|
|
199
202
|
start: "waku start",
|
|
200
203
|
"types:check": "fumadocs-mdx && tsc --noEmit"
|
|
201
204
|
},
|
|
202
|
-
dependencies
|
|
205
|
+
dependencies: {
|
|
206
|
+
...dependencies,
|
|
207
|
+
fumapress: version
|
|
208
|
+
},
|
|
203
209
|
devDependencies
|
|
204
210
|
};
|
|
205
211
|
}
|