@qualcomm-ui/changesets-cli 1.0.1 → 1.0.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 +12 -12
- package/dist/cli.cjs +150 -206
- package/dist/cli.cjs.map +3 -3
- package/dist/create-github-releases.d.ts.map +1 -1
- package/dist/main.d.ts +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/dist/utils.d.ts +5 -19
- package/dist/utils.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,13 +25,13 @@ Runs the full release-prep pipeline sequentially:
|
|
|
25
25
|
qui-changesets prep-release [options]
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
| Option | Description
|
|
29
|
-
| ----------------------------- |
|
|
30
|
-
| `--in-steps` | Pause after each step and wait for confirmation
|
|
31
|
-
| `--
|
|
32
|
-
| `--include-commit-links` | Embed commit hashes in changeset summaries for changelog links
|
|
33
|
-
| `--package-manager <command>` | Package manager command to use for `changeset version`
|
|
34
|
-
| `--config <path>` | Path to the changesets config file, relative to the project root
|
|
28
|
+
| Option | Description | Default |
|
|
29
|
+
| ----------------------------- | ----------------------------------------------------------------------------------- | ------------------------ |
|
|
30
|
+
| `--in-steps` | Pause after each step and wait for confirmation | `false` |
|
|
31
|
+
| `--commit-sha <sha>` | Diff each package against the target commit instead of the repository's base branch | |
|
|
32
|
+
| `--include-commit-links` | Embed commit hashes in changeset summaries for changelog links | `false` |
|
|
33
|
+
| `--package-manager <command>` | Package manager command to use for `changeset version` | `pnpm` |
|
|
34
|
+
| `--config <path>` | Path to the changesets config file, relative to the project root | `.changeset/config.json` |
|
|
35
35
|
|
|
36
36
|
### `changeset-generate`
|
|
37
37
|
|
|
@@ -41,11 +41,11 @@ Generates changesets from conventional commits without running the full pipeline
|
|
|
41
41
|
qui-changesets changeset-generate [options]
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
| Option | Description
|
|
45
|
-
| ------------------------ |
|
|
46
|
-
| `--
|
|
47
|
-
| `--include-commit-links` | Embed commit hashes in changeset summaries for changelog links
|
|
48
|
-
| `--config <path>` | Path to the changesets config file, relative to the project root
|
|
44
|
+
| Option | Description | Default |
|
|
45
|
+
| ------------------------ | ----------------------------------------------------------------------------------- | ------------------------ |
|
|
46
|
+
| `--commit-sha` | Diff each package against the target commit instead of the repository's base branch | `false` |
|
|
47
|
+
| `--include-commit-links` | Embed commit hashes in changeset summaries for changelog links | `false` |
|
|
48
|
+
| `--config <path>` | Path to the changesets config file, relative to the project root | `.changeset/config.json` |
|
|
49
49
|
|
|
50
50
|
### `consolidate-changelogs`
|
|
51
51
|
|