intershell 0.5.0 → 0.6.1
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 +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -116,6 +116,8 @@ bun run version:publish -- --dry-run # npm publish --dry-run
|
|
|
116
116
|
|
|
117
117
|
The script lives at `scripts/version/publish.ts` and is exposed as `version:publish` so it stays grouped with the other version scripts and does not use the script name `publish` (npm treats that as a lifecycle hook after `npm publish`).
|
|
118
118
|
|
|
119
|
+
After a real `npm publish`, it runs [`gh release create`](https://cli.github.com/manual/gh_release_create) (or `gh release edit` if the release already exists). Install the [GitHub CLI](https://cli.github.com/) and run `gh auth login`. The version tag must exist on the remote (`--verify-tag`). Use `--no-github` to skip. Release notes are the **parsed slice for that semver** from `CHANGELOG.md` (same rules as `ChangelogTemplate.parseVersions` / `DefaultChangelogTemplate`); if missing, new releases use `--generate-notes` and edits only update the title.
|
|
120
|
+
|
|
119
121
|
## Requirements
|
|
120
122
|
|
|
121
123
|
- **Bun** >= 1.0.0 (recommended runtime)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "intershell",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.6.1",
|
|
5
5
|
"description": "Bun-first TypeScript library of monorepo entities (commits, packages, versioning, tags, affected, compose, config).",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Soheil Movahedan <soheil.movahedan@gmail.com>",
|