uniweb 0.7.4 → 0.7.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/README.md +5 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -240,17 +240,17 @@ Start simple. Add what you need, when you need it:
|
|
|
240
240
|
cd my-site
|
|
241
241
|
|
|
242
242
|
# Add a second foundation
|
|
243
|
-
uniweb add foundation blog
|
|
243
|
+
npx uniweb add foundation blog
|
|
244
244
|
|
|
245
245
|
# Add a site wired to the blog foundation
|
|
246
|
-
uniweb add site blog --foundation blog
|
|
246
|
+
npx uniweb add site blog --foundation blog
|
|
247
247
|
|
|
248
248
|
# Add an extension (auto-wired to the only site)
|
|
249
|
-
uniweb add extension effects
|
|
249
|
+
npx uniweb add extension effects
|
|
250
250
|
|
|
251
251
|
# Scaffold + apply content from an official template
|
|
252
|
-
uniweb add foundation marketing --from marketing
|
|
253
|
-
uniweb add site main --from marketing --foundation marketing
|
|
252
|
+
npx uniweb add foundation marketing --from marketing
|
|
253
|
+
npx uniweb add site main --from marketing --foundation marketing
|
|
254
254
|
```
|
|
255
255
|
|
|
256
256
|
The workspace grows organically. `add` handles placement, wires dependencies, updates workspace globs, and generates root scripts. Use `--path` to override default placement, or `--project` for co-located layouts (e.g., `marketing/foundation/` + `marketing/site/`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniweb",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "Create structured Vite + React sites with content/code separation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"js-yaml": "^4.1.0",
|
|
42
42
|
"prompts": "^2.4.2",
|
|
43
43
|
"tar": "^7.0.0",
|
|
44
|
-
"@uniweb/
|
|
45
|
-
"@uniweb/
|
|
46
|
-
"@uniweb/
|
|
47
|
-
"@uniweb/
|
|
44
|
+
"@uniweb/core": "0.5.1",
|
|
45
|
+
"@uniweb/runtime": "0.6.1",
|
|
46
|
+
"@uniweb/build": "0.7.4",
|
|
47
|
+
"@uniweb/kit": "0.6.1"
|
|
48
48
|
}
|
|
49
49
|
}
|