Skip to content

Commit 617aaf6

Browse files
Goosterhofclaude
andcommitted
docs: replace fictional ^1.0.0 peer ranges + drop changeset reference
Four mechanical drift fixes closing deferred item `fs-packages-docs-peer-range-and-changeset-drift-cleanup`: - docs/packages/adapter-store.md:9 — peer line now matches packages/adapter-store/package.json#peerDependencies verbatim (vue ^3.5.33; fs-http ^0.1.0 || ^0.2.0 || ^0.3.0; fs-storage / fs-loading / fs-helpers ^0.1.0). - docs/packages/loading.md:9 — peer line now matches packages/loading/package.json#peerDependencies verbatim (vue ^3.5.33; fs-http ^0.1.0 || ^0.2.0 || ^0.3.0). - docs/architecture.md:84 — fs-loading peer-deps code block now matches packages/loading/package.json source-of-truth. - CONTRIBUTING.md:17 — drop `npx changeset` quick-reference (no changeset bot exists; release path is `**/package.json` push to main triggering OIDC Trusted Publishing) per the post-PR-#73 Publishing wording in docs/contributing.md. Path (b) of the deferred entry — the fast tactical fix. Path (a) (Armorer Level-1/2 enforcement gate) remains queued. Verification: format:check / lint / typecheck / docs:build all pass locally; rendered HTML at docs/.vitepress/dist/packages/{adapter-store, loading}.html and docs/.vitepress/dist/architecture.html shows the new peer-range strings with backticks rendered correctly. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9c35d8b commit 617aaf6

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ npm run test:coverage # Run tests with 100% coverage threshold
1313
npm run test:mutation # Run mutation testing with 90% threshold
1414
npm run format # Format with oxfmt
1515
npm run lint # Lint with oxlint
16-
npx changeset # Create a changeset for your changes
16+
# To release: bump the affected package's `version` in its package.json and merge to main
17+
# (push to main with a **/package.json change triggers OIDC Trusted Publishing — no changeset bot)
1718
```

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ When packages do depend on each other (like `fs-loading` using `fs-http`'s middl
8181

8282
```json
8383
// fs-loading's package.json
84-
{"peerDependencies": {"@script-development/fs-http": "^1.0.0", "vue": "^3.5.0"}}
84+
{"peerDependencies": {"@script-development/fs-http": "^0.1.0 || ^0.2.0 || ^0.3.0", "vue": "^3.5.33"}}
8585
```
8686

8787
## Middleware Architecture

docs/packages/adapter-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Reactive state management with CRUD resource adapters.
66
npm install @script-development/fs-adapter-store
77
```
88

9-
**Peer dependencies:** `vue ^3.5.0`, `@script-development/fs-http ^1.0.0`, `@script-development/fs-storage ^1.0.0`, `@script-development/fs-loading ^1.0.0`, `@script-development/fs-helpers ^1.0.0`
9+
**Peer dependencies:** `vue ^3.5.33`, `@script-development/fs-http ^0.1.0 || ^0.2.0 || ^0.3.0`, `@script-development/fs-storage ^0.1.0`, `@script-development/fs-loading ^0.1.0`, `@script-development/fs-helpers ^0.1.0`
1010

1111
## What It Does
1212

docs/packages/loading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Reactive loading state service with counter-based tracking and HTTP middleware i
66
npm install @script-development/fs-loading
77
```
88

9-
**Peer dependencies:** `vue ^3.5.0`, `@script-development/fs-http ^1.0.0`
9+
**Peer dependencies:** `vue ^3.5.33`, `@script-development/fs-http ^0.1.0 || ^0.2.0 || ^0.3.0`
1010

1111
## What It Does
1212

0 commit comments

Comments
 (0)