lumina-code-agent 1.6.3 → 1.6.4

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -39,7 +39,7 @@ async function onboarding() {
39
39
  function parseCodeBlocks(text) {
40
40
  const files = [];
41
41
  // Match ```filename ... ``` blocks
42
- const blockRegex = `` `([\w./\-_]+)?\s*\n([\s\S]*?)` `` / g;
42
+ const blockRegex = /```([\w./\-_]+)?\s*\n([\s\S]*?)```/g;
43
43
  let match;
44
44
  while ((match = blockRegex.exec(text)) !== null) {
45
45
  const filename = match[1]?.trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumina-code-agent",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "Lumina Code - AI coding agent",
5
5
  "license": "MIT",
6
6
  "type": "module",