@easonwumac/computer-linker 0.1.5 → 0.1.6
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/CHANGELOG.md +11 -0
- package/README.md +6 -3
- package/docs/release-checklist.md +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to Computer Linker will be documented in this file.
|
|
|
5
5
|
This project follows a small pre-1.0 changelog: breaking contract changes are
|
|
6
6
|
called out even when the package version is still `0.x`.
|
|
7
7
|
|
|
8
|
+
## 0.1.6 - 2026-06-27
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- The local npm release wrapper now loads `NODE_AUTH_TOKEN` from the Windows
|
|
13
|
+
User environment when the current shell process has not inherited it, avoiding
|
|
14
|
+
a false `npm whoami` 401 after saving a token with `setx` or the Windows
|
|
15
|
+
environment UI.
|
|
16
|
+
- README and release checklist now document that Windows release token
|
|
17
|
+
hydration behavior.
|
|
18
|
+
|
|
8
19
|
## 0.1.5 - 2026-06-27
|
|
9
20
|
|
|
10
21
|
### Changed
|
package/README.md
CHANGED
|
@@ -491,9 +491,12 @@ release tag after a successful npm publish. After npm accepts the publish, the
|
|
|
491
491
|
wrapper waits for registry metadata, verifies the npm dist-tag, and runs the
|
|
492
492
|
published CLI from a clean temporary directory. Use `npm run release:verify` to
|
|
493
493
|
repeat that post-publish check for the current `package.json` version.
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
494
|
+
On Windows, if `NODE_AUTH_TOKEN` is saved in the User environment but the
|
|
495
|
+
current shell has not picked it up yet, the release wrapper loads it only into
|
|
496
|
+
the current release process before running `npm whoami` or `npm publish`.
|
|
497
|
+
|
|
498
|
+
For a public alpha from this private dogfooding checkout, use the fresh public
|
|
499
|
+
snapshot path:
|
|
497
500
|
|
|
498
501
|
```bash
|
|
499
502
|
npm run public:release-ready
|
|
@@ -56,8 +56,10 @@ release tag automatically before publishing, `--otp <code>` for npm 2FA, and
|
|
|
56
56
|
version metadata, verifies the configured npm dist-tag, and runs the published
|
|
57
57
|
CLI from a clean temporary directory. `release:verify` repeats only that
|
|
58
58
|
post-publish registry check for the current `package.json` version.
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
On Windows, a `NODE_AUTH_TOKEN` saved in the User environment is loaded into
|
|
60
|
+
the release process automatically when the current shell has not inherited it.
|
|
61
|
+
|
|
62
|
+
For the one-command local alpha readiness gate, run:
|
|
61
63
|
|
|
62
64
|
```bash
|
|
63
65
|
npm run alpha:check
|