uniweb 0.4.2 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,8 +6,6 @@ Create well-structured Vite + React projects with file-based routing, localizati
6
6
 
7
7
  ## Quick Start
8
8
 
9
- > **Need pnpm?** Run `npm install -g pnpm` or see [pnpm installation](https://pnpm.io/installation).
10
-
11
9
  ```bash
12
10
  pnpm create uniweb my-site --template marketing
13
11
  cd my-site
@@ -17,6 +15,8 @@ pnpm dev
17
15
 
18
16
  Open http://localhost:5173 to see your site. Edit files in `site/pages/` and `foundation/src/components/` to see changes instantly.
19
17
 
18
+ > **Need pnpm?** Run `npm install -g pnpm` or see [pnpm installation](https://pnpm.io/installation).
19
+
20
20
  ### Development Commands
21
21
 
22
22
  Run these from the **project root** (where `pnpm-workspace.yaml` is):
@@ -49,6 +49,8 @@ pnpm create uniweb my-site
49
49
 
50
50
  **See them live:** [View all template demos](https://uniweb.github.io/templates/)
51
51
 
52
+ ## What You Get
53
+
52
54
  Every project is a workspace with two packages:
53
55
 
54
56
  - **`site/`** — Content, pages, entry point
@@ -56,8 +58,6 @@ Every project is a workspace with two packages:
56
58
 
57
59
  Content authors work in markdown. Component authors work in React. Neither can break the other's work.
58
60
 
59
- ## What You Get
60
-
61
61
  ```
62
62
  my-project/
63
63
  ├── site/ # Content + configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -37,9 +37,9 @@
37
37
  "js-yaml": "^4.1.0",
38
38
  "prompts": "^2.4.2",
39
39
  "tar": "^7.0.0",
40
- "@uniweb/build": "0.3.0",
41
- "@uniweb/kit": "0.3.1",
42
40
  "@uniweb/core": "0.2.4",
41
+ "@uniweb/build": "0.3.1",
42
+ "@uniweb/kit": "0.3.1",
43
43
  "@uniweb/runtime": "0.4.2"
44
44
  }
45
45
  }