npm-workspaces-publish-tool 0.0.15 → 0.0.16

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 +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,13 +23,15 @@ npm install -g npm-workspaces-publish-tool
23
23
  ## Usage
24
24
 
25
25
  ```bash
26
- nw-publish [--dry-run] [--registry <url>]
26
+ nw-publish [--dry-run] [--registry <url>] [--auto-tick] [--anchor-tag-suffix <suffix>]
27
27
  ```
28
28
 
29
29
  ### Command Options
30
30
 
31
31
  - `--dry-run`: Runs validation and preview without actual publishing
32
32
  - `--registry <url>`: (Optional) NPM registry URL to publish scoped packages to
33
+ - `--auto-tick`: Automatically increment patch versions for packages that need version bumps
34
+ - `--anchor-tag-suffix <suffix>`: (Optional) Suffix to append to git tags (e.g., `-rc` creates tags like `v1.2.3-rc`)
33
35
 
34
36
  ## Workflow
35
37
  1. **Validation Phase**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-workspaces-publish-tool",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "An unopinionated tool to assist publishing of npm based mono-repo workspaces",
5
5
  "main": "build/src/cli.js",
6
6
  "type": "module",