From 10195d56c38d3e512e393ea862b498890e3a4e39 Mon Sep 17 00:00:00 2001 From: Yuxiao Mao Date: Wed, 7 Jan 2026 16:01:49 +0100 Subject: [PATCH] [hl] Allow remove uv dependencies in LiveClass --- hscript/LiveClass.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscript/LiveClass.hx b/hscript/LiveClass.hx index 3e8197f..a3f23fb 100644 --- a/hscript/LiveClass.hx +++ b/hscript/LiveClass.hx @@ -117,7 +117,7 @@ class LiveClass { public static function registerFile( file : String, onChange : Void -> Void ) { for( dir in CONFIG.srcPath ) { var path = dir+"/"+file; - #if hl + #if (hl && hl_no_libuv) if( !sys.FileSystem.exists(path) ) continue; new hl.uv.Fs(null, path, function(ev) onChange()); #else