From 9b556106758765e7c096e6c08c798f511219c97e Mon Sep 17 00:00:00 2001 From: sunnylqm Date: Thu, 10 Apr 2025 21:43:04 +0800 Subject: [PATCH] Update version to 1.43.4 and add 'txt.map' to ignored packing extensions --- package.json | 2 +- src/bundle.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9da3fff..f9aa3e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-update-cli", - "version": "1.43.3", + "version": "1.43.4", "description": "command line tool for react-native-update (remote updates for react native)", "main": "index.js", "bin": { diff --git a/src/bundle.ts b/src/bundle.ts index b1f194f..2f41187 100644 --- a/src/bundle.ts +++ b/src/bundle.ts @@ -477,7 +477,7 @@ async function uploadSourcemapForSentry( } const ignorePackingFileNames = ['.', '..', 'index.bundlejs.map']; -const ignorePackingExtensions = ['DS_Store']; +const ignorePackingExtensions = ['DS_Store','txt.map']; async function pack(dir: string, output: string) { console.log('Packing'); fs.ensureDirSync(path.dirname(output));