intershell 0.4.0 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -110,10 +110,12 @@ bun run check # lint --fix, then typecheck, test, and build
110
110
  Release to npm after `version:prepare` and `version:apply` (so `package.json` and the git tag match):
111
111
 
112
112
  ```bash
113
- bun run publish # validate, build, npm publish
114
- bun run publish -- --dry-run # npm publish --dry-run
113
+ bun run version:publish # validate, build, npm publish
114
+ bun run version:publish -- --dry-run # npm publish --dry-run
115
115
  ```
116
116
 
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
+
117
119
  ## Requirements
118
120
 
119
121
  - **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.0",
4
+ "version": "0.5.0",
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>",
@@ -40,7 +40,7 @@
40
40
  "commit:check": "bun run ./src/commit-check.ts",
41
41
  "version:prepare": "bun run ./scripts/version/prepare.ts",
42
42
  "version:apply": "bun run ./scripts/version/apply.ts",
43
- "publish": "bun run ./scripts/publish/publish.ts"
43
+ "version:publish": "bun run ./scripts/version/publish.ts"
44
44
  },
45
45
  "keywords": [
46
46
  "monorepo",