@jami-studio/core 0.92.13 → 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.
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.92.13
4
10
 
5
11
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.92.13",
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":