uniweb 0.2.37 → 0.2.38

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 CHANGED
@@ -142,25 +142,13 @@ Projects use Vite 7 and Tailwind CSS v4 by default.
142
142
 
143
143
  ### Setting up pnpm
144
144
 
145
- Uniweb projects use pnpm for dependency management. The easiest way to get pnpm is via **Corepack**, which ships with Node.js.
146
-
147
- **Enable Corepack (one-time setup):**
145
+ We recommend pnpm for dependency management (npm also works). Install pnpm via npm:
148
146
 
149
147
  ```bash
150
- corepack enable
148
+ npm install -g pnpm
151
149
  ```
152
150
 
153
- > **Node 25+**: Corepack is no longer bundled. Install it first:
154
- > ```bash
155
- > npm i -g corepack && corepack enable
156
- > ```
157
-
158
- **Troubleshooting:**
159
-
160
- - If `pnpm` isn't found after enabling Corepack, you may have a global pnpm installation shadowing it. Remove it with `npm uninstall -g pnpm`.
161
- - Alternatively, install pnpm directly: `npm install -g pnpm`
162
-
163
- Once Corepack is enabled, running `pnpm install` in a Uniweb project will automatically use the correct pnpm version specified in `package.json`.
151
+ Or see the [official pnpm installation guide](https://pnpm.io/installation) for other options including Corepack, Homebrew, and more.
164
152
 
165
153
  ## Commands
166
154
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.2.37",
3
+ "version": "0.2.38",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,8 +38,8 @@
38
38
  "prompts": "^2.4.2",
39
39
  "tar": "^7.0.0",
40
40
  "@uniweb/build": "0.1.19",
41
- "@uniweb/kit": "0.1.5",
42
41
  "@uniweb/runtime": "0.2.11",
42
+ "@uniweb/kit": "0.1.5",
43
43
  "@uniweb/core": "0.1.8"
44
44
  }
45
45
  }
@@ -3,7 +3,6 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "type": "module",
6
- "packageManager": "pnpm@10.0.0",
7
6
  "scripts": {
8
7
  "dev": "pnpm --filter site dev",
9
8
  "build": "pnpm --filter foundation build && pnpm --filter site build",
@@ -3,7 +3,6 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "type": "module",
6
- "packageManager": "pnpm@10.0.0",
7
6
  "scripts": {
8
7
  "dev": "pnpm --filter main dev",
9
8
  "dev:all": "pnpm -r dev",
@@ -3,7 +3,6 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "type": "module",
6
- "packageManager": "pnpm@10.0.0",
7
6
  "scripts": {
8
7
  "dev": "pnpm --filter site dev",
9
8
  "build": "pnpm --filter foundation build && pnpm --filter site build",