opencode-terminal-progress 0.2.1 → 0.2.2

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
@@ -17,7 +17,7 @@ function createOsc() {
17
17
  const inTmux = !!process.env["TMUX"];
18
18
  return (payload) => {
19
19
  const esc = inTmux ? `\x1BPtmux;\x1B\x1B]${payload}\x07\x1B\\` : `\x1B]${payload}\x07`;
20
- process.stdout.write(esc);
20
+ process.stderr.write(esc);
21
21
  };
22
22
  }
23
23
  var TerminalProgressPlugin = async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-terminal-progress",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "OpenCode plugin that shows agent progress in terminal tabs (iTerm2, WezTerm, Windows Terminal)",
5
5
  "author": {
6
6
  "name": "Pedro Pombeiro",