@gw-tools/gw 0.1.1 → 0.2.0
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ npm install -g @gw-tools/gw
|
|
|
39
39
|
This will download the appropriate binary for your platform (macOS, Linux, or Windows) and make the `gw` command available globally.
|
|
40
40
|
|
|
41
41
|
**Supported Platforms:**
|
|
42
|
+
|
|
42
43
|
- macOS (Intel & Apple Silicon)
|
|
43
44
|
- Linux (x64 & ARM64)
|
|
44
45
|
- Windows (x64)
|
|
@@ -172,6 +173,7 @@ nx run gw-tool:release
|
|
|
172
173
|
```
|
|
173
174
|
|
|
174
175
|
This single command will:
|
|
176
|
+
|
|
175
177
|
1. Analyze your commits since the last release
|
|
176
178
|
2. Automatically determine version bump (major/minor/patch)
|
|
177
179
|
3. Update npm/package.json with the new version
|
|
@@ -191,6 +193,7 @@ Use these commit prefixes to control versioning:
|
|
|
191
193
|
- `chore:`, `docs:`, `style:`, `refactor:`, `test:` - No version bump
|
|
192
194
|
|
|
193
195
|
**Examples:**
|
|
196
|
+
|
|
194
197
|
```bash
|
|
195
198
|
git commit -m "feat: add dry-run mode" # 1.0.0 → 1.1.0
|
|
196
199
|
git commit -m "fix: correct path resolution" # 1.0.0 → 1.0.1
|
|
@@ -262,6 +265,7 @@ nx run gw-tool:release
|
|
|
262
265
|
```
|
|
263
266
|
|
|
264
267
|
The version is automatically determined from your commits:
|
|
268
|
+
|
|
265
269
|
- `feat:` → minor version bump (1.0.0 → 1.1.0)
|
|
266
270
|
- `fix:` → patch version bump (1.0.0 → 1.0.1)
|
|
267
271
|
- `feat!:` or `BREAKING CHANGE:` → major version bump (1.0.0 → 2.0.0)
|
|
@@ -269,6 +273,7 @@ The version is automatically determined from your commits:
|
|
|
269
273
|
**Manual Approach:**
|
|
270
274
|
|
|
271
275
|
If you prefer manual control:
|
|
276
|
+
|
|
272
277
|
1. Update `packages/gw-tool/npm/package.json` version
|
|
273
278
|
2. Update `packages/gw-tool/deno.json` version (if using JSR)
|
|
274
279
|
3. Commit and push changes
|