dev3000 0.0.3 → 0.0.5

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.
@@ -4,7 +4,8 @@ import { useState, useEffect, useRef, useMemo } from 'react';
4
4
  import { LogEntry, LogsApiResponse, ConfigApiResponse } from '../../types';
5
5
 
6
6
  function parseLogLine(line: string): LogEntry | null {
7
- const match = line.match(/\[([^\]]+)\] \[([^\]]+)\] (.+)/);
7
+ // More robust parsing - match timestamp and source, then take everything else as message
8
+ const match = line.match(/^\[([^\]]+)\] \[([^\]]+)\] (.*)$/s);
8
9
  if (!match) return null;
9
10
 
10
11
  const [, timestamp, source, message] = match;
@@ -32,7 +33,7 @@ function LogEntryComponent({ entry }: { entry: LogEntry }) {
32
33
  {entry.source}
33
34
  </span>
34
35
  </div>
35
- <div className="mt-1 font-mono text-sm whitespace-pre-wrap">
36
+ <div className="mt-1 font-mono text-sm whitespace-pre-wrap break-words overflow-wrap-anywhere">
36
37
  {entry.message}
37
38
  </div>
38
39
  {entry.screenshot && (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev3000",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "AI-powered development tools with browser monitoring and MCP server integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",