claude-opencode-viewer 2.6.18 → 2.6.20

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/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-opencode-viewer",
3
- "version": "2.6.18",
3
+ "version": "2.6.20",
4
4
  "description": "A unified terminal viewer for Claude Code and OpenCode with seamless switching",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -546,7 +546,7 @@ const requestHandler = async (req, res) => {
546
546
  const changes = stdout.split('\n').filter(Boolean).map(line => ({
547
547
  status: line.substring(0, 2).trim(),
548
548
  file: line.substring(3),
549
- }));
549
+ })).filter(c => !/^core-/.test(c.file));
550
550
  res.end(JSON.stringify({ changes }));
551
551
  } catch (err) {
552
552
  res.end(JSON.stringify({ changes: [], error: err.message }));