@qorejs/qore 1.0.5 → 1.0.6

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 CHANGED
@@ -80,6 +80,8 @@ Each selected stream is still a signal and an async iterable. A timeline can ren
80
80
 
81
81
  Qore can be used inside React without replacing your UI stack. The release-ready adapter lives in [`packages/react`](./packages/react) and subscribes to Qore streams through React's external store contract, so the stream remains the source of truth while React renders the view.
82
82
 
83
+ > Status: `@qorejs/react` is release-ready in this repository, but npm publishing is still waiting on `@qorejs/react` package access for the `@qorejs` scope. The adapter smoke test passes; the package will be announced as published only after npm accepts it.
84
+
83
85
  ```tsx
84
86
  import { stream } from '@qorejs/qore';
85
87
  import { useQoreStream } from '@qorejs/react';
package/docs/react.md CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  Qore's core runtime is framework-neutral. The React adapter lets React apps consume Qore streams without treating streaming as a special rendering case.
4
4
 
5
+ > Status: the adapter is release-ready in [`packages/react`](../packages/react), but the npm package is not published yet. Publishing currently fails with npm `E404` for `@qorejs/react`, which means the `@qorejs` npm scope/package access still needs to be provisioned before the install command below becomes valid.
6
+
5
7
  ```bash
8
+ # Available after npm package access is provisioned.
6
9
  npm i @qorejs/qore @qorejs/react
7
10
  ```
8
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qorejs/qore",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Qore is a reactive stream runtime for AI-native interfaces.",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",