@capxul/sdk-react 0.1.0-alpha.0 → 0.1.0-alpha.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @capxul/sdk-react
2
2
 
3
+ ## 0.1.0-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Move workspace `@repo/*` packages from `dependencies` to
8
+ `devDependencies` so the published `package.json` doesn't list them
9
+ as runtime deps. The tsup pipeline bundles every `@repo/*` import
10
+ inline (`noExternal`), so the published code has zero references to
11
+ those packages — but until now the published `package.json` still
12
+ declared them, and `npm install @capxul/sdk@0.1.0-alpha.0` failed
13
+ trying to resolve `@repo/api-contract@0.0.0` etc. on the public
14
+ registry.
15
+
16
+ `@capxul/sdk-react` keeps `@capxul/sdk` as a runtime dep — that one
17
+ is published.
18
+
19
+ No public surface changes. Pure publish-metadata correction caught
20
+ during alpha.0 spike-install verification.
21
+
22
+ - Updated dependencies
23
+ - @capxul/sdk@0.1.0-alpha.1
24
+
3
25
  Changelog managed by [changesets](https://github.com/changesets/changesets) —
4
26
  see `.changeset/README.md` for the operator workflow.
5
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capxul/sdk-react",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.1",
4
4
  "description": "React provider + hooks for the @capxul/sdk headless client.",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -41,10 +41,7 @@
41
41
  "access": "public"
42
42
  },
43
43
  "dependencies": {
44
- "@capxul/sdk": "0.1.0-alpha.0",
45
- "@repo/config": "0.0.0",
46
- "@repo/observability": "0.0.0",
47
- "@repo/platform-kernel": "0.0.0"
44
+ "@capxul/sdk": "0.1.0-alpha.1"
48
45
  },
49
46
  "peerDependencies": {
50
47
  "@tanstack/react-query": "^5",
@@ -67,6 +64,9 @@
67
64
  "typescript": "5.9.2",
68
65
  "viem": "2.47.10",
69
66
  "vitest": "^4.1.2",
67
+ "@repo/config": "0.0.0",
68
+ "@repo/observability": "0.0.0",
69
+ "@repo/platform-kernel": "0.0.0",
70
70
  "@repo/typescript-config": "0.0.0"
71
71
  },
72
72
  "scripts": {