@qualcomm-ui/changesets-cli 1.0.4 → 1.1.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 +16 -0
- package/dist/cli.cjs +847 -311
- package/dist/cli.cjs.map +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/dist/update-jsdoc-since-tags.d.ts +51 -0
- package/dist/update-jsdoc-since-tags.d.ts.map +1 -0
- package/dist/update-jsdoc-since-tags.spec.d.ts +2 -0
- package/dist/update-jsdoc-since-tags.spec.d.ts.map +1 -0
- package/dist/version-bump.d.ts +22 -0
- package/dist/version-bump.d.ts.map +1 -0
- package/dist/version-bump.spec.d.ts +2 -0
- package/dist/version-bump.spec.d.ts.map +1 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -75,6 +75,22 @@ qui-changesets check-versions [options]
|
|
|
75
75
|
| ----------------- | ---------------------------------------------------------------- | ------------------------ |
|
|
76
76
|
| `--config <path>` | Path to the changesets config file, relative to the project root | `.changeset/config.json` |
|
|
77
77
|
|
|
78
|
+
### `check-jsdoc-since-tags`
|
|
79
|
+
|
|
80
|
+
Checks for unresolved JSDoc `@since next-release` tags without modifying files. With no directories, it scans package source directories. Pass one or more directories to scan those trees directly. Output includes the file and the declaration that owns the tag.
|
|
81
|
+
|
|
82
|
+
```sh
|
|
83
|
+
qui-changesets check-jsdoc-since-tags [directories...]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### `update-jsdoc-since-tags`
|
|
87
|
+
|
|
88
|
+
Replaces JSDoc `@since next-release` tags. With no directories, it updates package source directories whose current `package.json` version differs from the Changesets base branch. Pass `--diff-ref` to compare against another Git ref such as a commit SHA, tag, local branch, or remote-tracking branch like `origin/main`. Pass one or more directories to update those trees directly. Pass `--version` to use an explicit version; otherwise each custom directory must be inside a package with a current version.
|
|
89
|
+
|
|
90
|
+
```sh
|
|
91
|
+
qui-changesets update-jsdoc-since-tags [directories...] [--diff-ref <git-ref>] [--version <version>]
|
|
92
|
+
```
|
|
93
|
+
|
|
78
94
|
### `create-github-releases`
|
|
79
95
|
|
|
80
96
|
Creates GitHub releases for published packages by parsing their changelogs.
|