uniweb 0.7.9 → 0.7.10
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 +2 -1
- package/package.json +4 -4
- package/src/index.js +0 -1
package/README.md
CHANGED
|
@@ -250,12 +250,13 @@ npx uniweb add site main --from marketing --foundation marketing
|
|
|
250
250
|
|
|
251
251
|
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/`).
|
|
252
252
|
|
|
253
|
+
> `npx uniweb` works before and after install. Once dependencies are installed, you can also use `pnpm uniweb` directly since `uniweb` is a project dependency.
|
|
254
|
+
|
|
253
255
|
**Or start blank and build up:**
|
|
254
256
|
|
|
255
257
|
```bash
|
|
256
258
|
pnpm create uniweb acme --template blank
|
|
257
259
|
cd acme
|
|
258
|
-
pnpm install
|
|
259
260
|
npx uniweb add foundation
|
|
260
261
|
npx uniweb add site
|
|
261
262
|
pnpm install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniweb",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
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/build": "0.7.6",
|
|
45
|
+
"@uniweb/runtime": "0.6.1",
|
|
44
46
|
"@uniweb/kit": "0.6.1",
|
|
45
|
-
"@uniweb/
|
|
46
|
-
"@uniweb/core": "0.5.1",
|
|
47
|
-
"@uniweb/runtime": "0.6.1"
|
|
47
|
+
"@uniweb/core": "0.5.1"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/src/index.js
CHANGED
|
@@ -501,7 +501,6 @@ async function main() {
|
|
|
501
501
|
if (templateType === 'blank') {
|
|
502
502
|
log(`Next steps:\n`)
|
|
503
503
|
log(` ${colors.cyan}cd ${projectName}${colors.reset}`)
|
|
504
|
-
log(` ${colors.cyan}${installCmd(pm)}${colors.reset}`)
|
|
505
504
|
log(` ${colors.cyan}npx uniweb add foundation${colors.reset}`)
|
|
506
505
|
log(` ${colors.cyan}npx uniweb add site${colors.reset}`)
|
|
507
506
|
log(` ${colors.cyan}${installCmd(pm)}${colors.reset}`)
|