@mindexec/cli 0.2.270 → 0.2.271

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.270",
3
+ "version": "0.2.271",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v718';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v719';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -610,10 +610,11 @@
610
610
  Math.abs(Number(rotation.z || 0)) <= 1e-5;
611
611
  }
612
612
 
613
- function syncBusinessAutomationEdgesForCameraNavigation(module, options = {}) {
613
+ function syncBusinessAutomationEdgesForCameraNavigation(module, transformOnly = false, allowDraftRender = false) {
614
+ transformOnly = transformOnly === true;
615
+ allowDraftRender = allowDraftRender === true;
614
616
  const hasActiveEdges = module?._businessAutomationEdgeRenderActive === true;
615
- const transformOnly = options.transformOnly === true;
616
- if (hasActiveEdges !== true && options.allowDraftRender !== true) {
617
+ if (hasActiveEdges !== true && allowDraftRender !== true) {
617
618
  return false;
618
619
  }
619
620
 
@@ -635,7 +636,7 @@
635
636
 
636
637
  const hasConnectionDraft =
637
638
  transformOnly !== true &&
638
- options.allowDraftRender === true &&
639
+ allowDraftRender === true &&
639
640
  hasDraftHint === true &&
640
641
  window.MindMapCss3DManager.hasBusinessAutomationConnectionDraft?.() === true;
641
642
  if (hasActiveEdges !== true && hasConnectionDraft !== true) {
@@ -667,7 +668,7 @@
667
668
  }
668
669
 
669
670
  if (hasConnectionDraft === true &&
670
- options.allowDraftRender === true &&
671
+ allowDraftRender === true &&
671
672
  typeof window.MindMapCss3DManager.renderBusinessAutomationEdges === 'function') {
672
673
  window.MindMapCss3DManager.renderBusinessAutomationEdges(module);
673
674
  module._businessAutomationEdgesDeferredForMotion = false;
@@ -1766,7 +1767,7 @@
1766
1767
  module._syncLocalSnapGridPositionOnly?.(true);
1767
1768
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
1768
1769
 
1769
- syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1770
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1770
1771
 
1771
1772
  profileSection?.('uaUltraEarlyCameraOnly');
1772
1773
 
@@ -1992,7 +1993,7 @@
1992
1993
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
1993
1994
  }
1994
1995
 
1995
- syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1996
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1996
1997
 
1997
1998
  profileSection?.('uaUltraResidentCameraOnly');
1998
1999
 
@@ -5621,7 +5622,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5621
5622
  if (canRenderCss3d === true) {
5622
5623
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5623
5624
  }
5624
- syncBusinessAutomationEdgesForCameraNavigation(this, { transformOnly: true });
5625
+ syncBusinessAutomationEdgesForCameraNavigation(this, true);
5625
5626
  this.pauseAnimationLoopForDirectWheelZoom?.();
5626
5627
  return true;
5627
5628
  }
@@ -7118,7 +7119,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7118
7119
  window.MindMapTextOverlayV2?.syncPassiveViewTransform) {
7119
7120
  window.MindMapTextOverlayV2.syncPassiveViewTransform(this);
7120
7121
  }
7121
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7122
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7122
7123
  _profileSection('uaVisualOnlyMotion');
7123
7124
 
7124
7125
  const frameEnd = performance.now();
@@ -7291,7 +7292,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7291
7292
  if (this.cssRenderer && typeof this.cssRenderer.renderCamera === 'function') {
7292
7293
  renderCss3dCameraForCameraNavigation(this, 'ua-stationary-visual-motion');
7293
7294
  }
7294
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7295
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7295
7296
 
7296
7297
  _profileSection('uaStationaryVisualMotion');
7297
7298
 
@@ -7482,7 +7483,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7482
7483
  if (shouldRenderCss3dInLodForUaResidentCameraOnly === true) {
7483
7484
  renderCss3dCameraForCameraNavigation(this, 'ua-resident-visual-only-motion');
7484
7485
  }
7485
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7486
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7486
7487
  _profileSection('uaResidentVisualOnlyMotion');
7487
7488
 
7488
7489
  const frameEnd = performance.now();
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Business Execution OS for solo builders</title>
8
8
  <meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v718" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v718" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v719" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v719" />
12
12
  <!-- ?�▼??Font Awesome (local) ?�▼??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?�▲??-->
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260620-css3d-flat-wheel-v718';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v719';
583
583
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
584
584
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
585
585
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "voHTdObV",
2
+ "version": "HbEMpqDj",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-Rb+Mu9R4krbOB1tj8SdgdfJRke/sjRRNO76jrglDO1M=",
81
+ "hash": "sha256-pqgIWpUz6vTGCp3lE2eggiI30LkkJEe2bnEgUAHQqnI=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-lkk7lvho5nx0GhK0rdueNTebMEwhgV6R2/+Hwkfksks=",
837
+ "hash": "sha256-aLa9QYcCCEMlUbiccQn+feYoFv4B1hNGLZh3cWsW6MU=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: voHTdObV */
1
+ /* Manifest version: HbEMpqDj */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4