glassbox 0.9.6 → 0.9.7-rc.1

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/dist/cli.js CHANGED
@@ -4711,9 +4711,11 @@ function IconActualSize() {
4711
4711
  }
4712
4712
 
4713
4713
  // src/utils/charDiff.ts
4714
+ var MAX_LINE_LENGTH = 5e3;
4714
4715
  function charDiff(oldStr, newStr) {
4715
4716
  if (!oldStr && !newStr) return null;
4716
4717
  if (oldStr === newStr) return null;
4718
+ if (oldStr.length > MAX_LINE_LENGTH || newStr.length > MAX_LINE_LENGTH) return null;
4717
4719
  const lcs = lcsTable(oldStr, newStr);
4718
4720
  const lcsLen = lcs[oldStr.length][newStr.length];
4719
4721
  const maxLen = Math.max(oldStr.length, newStr.length);
@@ -6666,7 +6668,7 @@ async function main() {
6666
6668
  console.log("AI service test mode enabled \u2014 using mock AI responses");
6667
6669
  }
6668
6670
  if (debug) {
6669
- console.log(`[debug] Build timestamp: ${"2026-05-21T08:22:21.074Z"}`);
6671
+ console.log(`[debug] Build timestamp: ${"2026-05-21T22:56:25.081Z"}`);
6670
6672
  }
6671
6673
  if (projectDir !== null) {
6672
6674
  process.chdir(projectDir);