@zendero/runctl 0.1.5 → 0.1.7

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 +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -175,7 +175,7 @@ Add scripts to your `package.json`:
175
175
  | Step | Command |
176
176
  |------|--------|
177
177
  | Preflight | `./run.sh release-check` or `pnpm run release-check` |
178
- | Publish | `./run.sh release latest` or `pnpm run release` |
178
+ | Publish | `./run.sh release latest` or `pnpm run release` (publishes, then commits + pushes release changes if any) |
179
179
  | Promote dist-tag | After publishing under `next`, `./run.sh promote` sets **latest** for the version in `package.json` |
180
180
 
181
181
  Put `NPM_TOKEN` in `.env`. `release` / `npm-whoami` use a **temporary `NPM_CONFIG_USERCONFIG`** so a stale `~/.npmrc` token does not override `.env` (npm 10+ / pnpm). Token lines can use `NPM_TOKEN=` or `npm_token=`; quoted values are supported without `source`-ing secrets as shell code first.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendero/runctl",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Picks a free port, runs your dev server in the background, and keeps PID + port state in .run/ so projects don't collide.",
5
5
  "author": "DoctorKhan",
6
6
  "homepage": "https://github.com/DoctorKhan/runctl#readme",