@jami-studio/core 0.92.11 → 0.92.12
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/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/cli/workspace-dev.ts +1816 -1557
- package/corpus/core/src/deploy/build.ts +3797 -3754
- package/dist/cli/workspace-dev.d.ts +43 -0
- package/dist/cli/workspace-dev.d.ts.map +1 -1
- package/dist/cli/workspace-dev.js +299 -74
- package/dist/cli/workspace-dev.js.map +1 -1
- package/dist/deploy/build.d.ts +10 -0
- package/dist/deploy/build.d.ts.map +1 -1
- package/dist/deploy/build.js +694 -656
- package/dist/deploy/build.js.map +1 -1
- package/package.json +1 -1
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.92.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Workspace dev gateway gains a mixed "built" mode (`--built` / `WORKSPACE_BUILT=1`): apps boot from their prebuilt production Node servers (instant, prod-shaped), the gateway builds an app first when its build is missing or stale, and an app is automatically promoted to the vite dev server the moment one of its source files changes — hot reload where you're editing, built servers everywhere else. A failed build falls back to vite instead of bricking the app. Also: Cloudflare Pages worker bundles now stub uninstalled optional AI SDK provider packages (`ai`, `@ai-sdk/*`, `@openrouter/ai-sdk-provider`, `ai-sdk-ollama`) instead of failing the esbuild bundle with "Could not resolve".
|
|
8
|
+
|
|
3
9
|
## 0.92.11
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.12",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/studio-jami/jami-studio#readme",
|
|
6
6
|
"bugs": {
|