@cellarnode/ui 0.169.2 → 0.169.3
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 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ src/
|
|
|
60
60
|
pnpm add @cellarnode/ui
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
> **Note:** This package is
|
|
63
|
+
> **Note:** This package is public on npmjs.org (`publishConfig.access: "public"`, CEL-1983); installs need no registry auth. The repo `.npmrc` still routes the `@cellarnode` scope to registry.npmjs.org and reads `${NPM_TOKEN}` if one is set.
|
|
64
64
|
|
|
65
65
|
---
|
|
66
66
|
|
|
@@ -227,7 +227,7 @@ claude mcp add storybook-mcp --transport http http://localhost:6006/mcp --scope
|
|
|
227
227
|
|
|
228
228
|
## Publishing
|
|
229
229
|
|
|
230
|
-
Packages are published to npm (
|
|
230
|
+
Packages are published to npm (public access — `publishConfig.access: "public"`, see CEL-1983) via **npm Trusted Publishing (OIDC)** —
|
|
231
231
|
`.github/workflows/publish.yml` publishes automatically on a merge to `main` that changes
|
|
232
232
|
`package.json`'s version. Nobody runs `npm publish` by hand; there is no long-lived npm token
|
|
233
233
|
in the publish job. Releases are cut locally via Make, then landed through a normal PR:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cellarnode/ui",
|
|
3
|
-
"version": "0.169.
|
|
3
|
+
"version": "0.169.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"registry": "https://registry.npmjs.org/",
|
|
15
|
-
"access": "
|
|
15
|
+
"access": "public"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|