@promptster/cli 0.2.7 → 0.2.8
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
CHANGED
|
@@ -27,6 +27,10 @@ promptster status
|
|
|
27
27
|
|
|
28
28
|
# Diagnose your setup
|
|
29
29
|
promptster doctor
|
|
30
|
+
|
|
31
|
+
# Drain queued important decisions without blocking hooks
|
|
32
|
+
promptster decide
|
|
33
|
+
promptster decide watch
|
|
30
34
|
```
|
|
31
35
|
|
|
32
36
|
## Supported Platforms
|
|
@@ -40,21 +44,22 @@ promptster doctor
|
|
|
40
44
|
From the repo root:
|
|
41
45
|
|
|
42
46
|
```bash
|
|
43
|
-
# 1.
|
|
44
|
-
|
|
45
|
-
node scripts/build.js 0.2.5 # replace with your version
|
|
47
|
+
# 1. Prepare and stage only the CLI release manifest
|
|
48
|
+
node scripts/cli-release-prepare.mjs 0.2.8
|
|
46
49
|
|
|
47
|
-
# 2.
|
|
48
|
-
|
|
50
|
+
# 2. Review the changelog, then commit the staged files
|
|
51
|
+
git commit -m "chore(cli): release v0.2.8"
|
|
49
52
|
|
|
50
|
-
# 3.
|
|
51
|
-
node
|
|
53
|
+
# 3. Create the release tag after CLI-owned paths are clean
|
|
54
|
+
node scripts/cli-release-tag.mjs 0.2.8
|
|
52
55
|
|
|
53
|
-
# 4.
|
|
54
|
-
|
|
56
|
+
# 4. Push commit + tag to trigger CI publish
|
|
57
|
+
git push origin HEAD --follow-tags
|
|
55
58
|
```
|
|
56
59
|
|
|
57
|
-
|
|
60
|
+
Release notes come from `CHANGELOG.md`. The helper scripts only stage the release manifest and will not sweep in unrelated repo changes.
|
|
61
|
+
|
|
62
|
+
The full monorepo release notes are in `docs/cli-release.md`.
|
|
58
63
|
|
|
59
64
|
## License
|
|
60
65
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|