@jami-studio/core 0.92.12 → 0.92.14
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 +12 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/deploy/build.ts +8 -0
- package/corpus/core/src/deploy/workspace-deploy.ts +1458 -1453
- package/corpus/core/src/vite/client.ts +1 -0
- package/dist/deploy/build.js +7 -0
- package/dist/deploy/build.js.map +1 -1
- package/dist/deploy/workspace-deploy.js +207 -202
- package/dist/deploy/workspace-deploy.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +1 -0
- package/dist/vite/client.js.map +1 -1
- package/package.json +1 -1
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.92.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Deploy builds sweep stale `.deploy-tmp` before running (both the per-app post-build entry and the workspace-deploy per-app clean list). A crashed prior build left partial artifacts that silently poisoned the next build for that app — observed as a cloudflare_pages unified build dying after the vite phases with no error output.
|
|
8
|
+
|
|
9
|
+
## 0.92.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- SSR heavy-lib stub: add `useMessagePartReasoning` to the named-export list. Core's chat message components import the hook from `@assistant-ui/react`; templates that list that package in `ssrStubs` (e.g. content) failed `agent-native build` with `[MISSING_EXPORT] "useMessagePartReasoning" is not exported by "\0agent-native-ssr-stub"`.
|
|
14
|
+
|
|
3
15
|
## 0.92.12
|
|
4
16
|
|
|
5
17
|
### 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.14",
|
|
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": {
|
|
@@ -3773,6 +3773,14 @@ export default bundle;
|
|
|
3773
3773
|
async function main() {
|
|
3774
3774
|
console.log(`[deploy] Building for ${preset}...`);
|
|
3775
3775
|
|
|
3776
|
+
// Sweep stale .deploy-tmp before anything writes into it. A crashed prior
|
|
3777
|
+
// build (any preset) leaves partial artifacts behind; both build paths
|
|
3778
|
+
// mkdirSync over the dir without clearing it, and the stale contents can
|
|
3779
|
+
// silently poison the next build (observed: an interrupted node-preset
|
|
3780
|
+
// build made the following cloudflare_pages build fail with no error
|
|
3781
|
+
// output). Fresh tmp every run is the invariant.
|
|
3782
|
+
fs.rmSync(path.join(cwd, ".deploy-tmp"), { recursive: true, force: true });
|
|
3783
|
+
|
|
3776
3784
|
switch (preset) {
|
|
3777
3785
|
case "cloudflare_pages":
|
|
3778
3786
|
case "cloudflare-pages":
|