mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
- Set `disableThanks`, `prettier: false`, `privatePackages: { version: false, tag: false }`, and `updateInternalDependents: "always"` in `.changeset/config.json`; simplify the release workflow by dropping `NPM_TOKEN` and `NPM_CONFIG_PROVENANCE` from the CI env and switching to `vp run version`
- Add `stanza-cli` as a second bin entry in `publishConfig` alongside `stanza` so the package is callable by either name; reset the CLI package version to `0.0.0` so changesets drive versioning from a clean baseline
- Update docs throughout to reflect the `doctor` command surface (CLI reference, agents guide, telemetry list), the main-file registry URL convention (`registries` entries now point at the full `index.json` URL, not a directory), and the `STANZA_REGISTRY` env var description
20 lines
525 B
JSON
20 lines
525 B
JSON
{
|
|
"$schema": "https://unpkg.com/@changesets/config@3.1.4/schema.json",
|
|
"changelog": [
|
|
"@changesets/changelog-github",
|
|
{ "repo": "jakejarvis/stanza", "disableThanks": true }
|
|
],
|
|
"commit": false,
|
|
"prettier": false,
|
|
"fixed": [],
|
|
"linked": [],
|
|
"access": "public",
|
|
"privatePackages": { "version": false, "tag": false },
|
|
"baseBranch": "main",
|
|
"updateInternalDependencies": "patch",
|
|
"ignore": [],
|
|
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
|
|
"updateInternalDependents": "always"
|
|
}
|
|
}
|