Skip to content

Commit 6aa498b

Browse files
Tajudeenclaude
andcommitted
fix(build): correct event-stream-compat import path in watch-win32.ts
build/lib/watch/watch-win32.ts imported './event-stream-compat.ts' which resolves to build/lib/watch/event-stream-compat.ts — a path that does not exist. The file lives one directory up at build/lib/event-stream-compat.ts, so the import must be '../event-stream-compat.ts'. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5ec4cec commit 6aa498b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/lib/watch/watch-win32.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import path from 'path';
77
import cp from 'child_process';
88
import fs from 'fs';
99
import File from 'vinyl';
10-
import es from './event-stream-compat.ts';
10+
import es from '../event-stream-compat.ts';
1111
import filter from 'gulp-filter';
1212
import { Stream } from 'stream';
1313
import { fileURLToPath } from 'url';

0 commit comments

Comments
 (0)