From 89da1e523813cfaaad2935adbcbea29d97317e05 Mon Sep 17 00:00:00 2001 From: sunnylqm Date: Sat, 25 Oct 2025 15:52:53 +0800 Subject: [PATCH] fix typo --- src/bundle.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bundle.ts b/src/bundle.ts index 6c17cc9..ae1be2c 100644 --- a/src/bundle.ts +++ b/src/bundle.ts @@ -164,7 +164,7 @@ async function runReactNativeBundleCommand({ } if (platform === 'harmony') { - bundleName = 'harmony.bundle.js'; + bundleName = 'bundle.harmony.js'; if (forceHermes === undefined) { // enable hermes by default for harmony forceHermes = true; @@ -454,7 +454,7 @@ const ignorePackingFileNames = [ '.', '..', 'index.bundlejs.map', - 'harmony.bundle.js.map', + 'bundle.harmony.js.map', ]; const ignorePackingExtensions = ['DS_Store', 'txt.map']; async function pack(dir: string, output: string) {