Skip to content

Commit cb48503

Browse files
Goosterhofclaude
andcommitted
fix(adapter-store, loading): widen fs-http peer range to 0.2.0
Completes the fs-http 0.1.3 → 0.2.0 bump from 8f764bd. Both consumer packages declared `"@script-development/fs-http": "^0.1.0"` in dev + peer deps; pre-1.0 caret only matches same-minor, so 0.2.0 fell outside the workspace constraint and npm pulled published 0.1.3 into nested node_modules. Result: `npm ci` could pass while adapter-store and loading were silently testing against the old fs-http. Widens both ranges to `^0.1.0 || ^0.2.0` (peer-range widening is monotonically backward-compatible). Bumps adapter-store 0.1.4 → 0.1.5 and loading 0.1.0 → 0.1.1 for observable metadata change. Lock now resolves all three fs-http references to the workspace copy at 0.2.0; nested registry copies removed. Verified locally: build / typecheck / format / lint / lint:pkg / coverage (430/430) all green. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8f764bd commit cb48503

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/adapter-store/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@script-development/fs-adapter-store",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Reactive adapter-store pattern with domain state management and CRUD resource adapters",
55
"homepage": "https://packages.script.nl/packages/adapter-store",
66
"license": "MIT",
@@ -42,15 +42,15 @@
4242
},
4343
"devDependencies": {
4444
"@script-development/fs-helpers": "^0.1.0",
45-
"@script-development/fs-http": "^0.1.0",
45+
"@script-development/fs-http": "^0.1.0 || ^0.2.0",
4646
"@script-development/fs-loading": "^0.1.0",
4747
"@script-development/fs-storage": "^0.1.0",
4848
"happy-dom": "^20.9.0",
4949
"vue": "^3.5.33"
5050
},
5151
"peerDependencies": {
5252
"@script-development/fs-helpers": "^0.1.0",
53-
"@script-development/fs-http": "^0.1.0",
53+
"@script-development/fs-http": "^0.1.0 || ^0.2.0",
5454
"@script-development/fs-loading": "^0.1.0",
5555
"@script-development/fs-storage": "^0.1.0",
5656
"vue": "^3.5.33"

packages/loading/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@script-development/fs-loading",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Reactive loading state service with counter-based tracking and HTTP middleware for fs-http",
55
"homepage": "https://packages.script.nl/packages/loading",
66
"license": "MIT",
@@ -41,14 +41,14 @@
4141
"typecheck": "tsc --noEmit"
4242
},
4343
"devDependencies": {
44-
"@script-development/fs-http": "^0.1.0",
44+
"@script-development/fs-http": "^0.1.0 || ^0.2.0",
4545
"@vue/test-utils": "^2.4.9",
4646
"axios": "^1.15.0",
4747
"happy-dom": "^20.9.0",
4848
"vue": "^3.5.33"
4949
},
5050
"peerDependencies": {
51-
"@script-development/fs-http": "^0.1.0",
51+
"@script-development/fs-http": "^0.1.0 || ^0.2.0",
5252
"vue": "^3.5.33"
5353
},
5454
"engines": {

0 commit comments

Comments
 (0)