@@ -36,8 +36,8 @@ const PLATFORM_MAPPING = {
3636
3737// Binary names for each platform
3838const PLATFORM_BINARY_NAMES = {
39- "linux-x64" : "linux- mta-analyzer-rpc" ,
40- "linux-arm64" : "linux- mta-analyzer-rpc" ,
39+ "linux-x64" : "mta-analyzer-rpc" ,
40+ "linux-arm64" : "mta-analyzer-rpc" ,
4141 "darwin-x64" : "darwin-mta-analyzer-rpc" ,
4242 "darwin-arm64" : "darwin-mta-analyzer-rpc" ,
4343 "win32-x64" : "windows-mta-analyzer-rpc.exe" ,
@@ -186,13 +186,8 @@ Object.assign(packageJson, {
186186} ) ;
187187
188188// Remove kai binary assets from package (they'll be downloaded at runtime)
189- // Keep them for CI/test builds to avoid timing issues
190- if ( packageJson . includedAssetPaths ?. kai && ! process . env . CI && ! process . env . KEEP_KAI_BINARIES ) {
191- delete packageJson . includedAssetPaths . kai ;
192- console . log ( "✅ Removed kai binary assets from package (runtime download enabled)" ) ;
193- } else if ( packageJson . includedAssetPaths ?. kai ) {
194- console . log ( "✅ Keeping kai binary assets for CI/test build" ) ;
195- }
189+ delete packageJson . includedAssetPaths . kai ;
190+ console . log ( "✅ Removed kai binary assets from package (runtime download enabled)" ) ;
196191
197192// Transform configuration properties
198193if ( packageJson . contributes ?. configuration ?. properties ) {
0 commit comments