package-versioner 0.8.2 → 0.8.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.
- package/README.md +1 -1
- package/dist/index.cjs +426 -475
- package/dist/index.js +436 -485
- package/docs/versioning.md +51 -2
- package/package-versioner.schema.json +1 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ Customize behaviour by creating a `version.config.json` file in your project roo
|
|
|
158
158
|
|
|
159
159
|
#### Monorepo-Specific Options
|
|
160
160
|
- `synced`: Whether all packages should be versioned together (default: true)
|
|
161
|
-
- `skip`: Array of package names to exclude from versioning
|
|
161
|
+
- `skip`: Array of package names or patterns to exclude from versioning. Supports exact names, scope wildcards, path patterns, and global wildcards (e.g., ["@scope/package-a", "@scope/*", "packages/**/*"])
|
|
162
162
|
- `packages`: Array of package names or patterns to target for versioning. Supports exact names, scope wildcards, and global wildcards (e.g., ["@scope/package-a", "@scope/*", "*"])
|
|
163
163
|
- `mainPackage`: Package name whose commit history should drive version determination
|
|
164
164
|
- `packageSpecificTags`: Whether to enable package-specific tagging behaviour (default: false)
|