Skip to content

Commit c116935

Browse files
committed
Merge branch 'release/3.2.5'
2 parents bff73e3 + edf9fb6 commit c116935

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-rename",
3-
"version": "3.2.4",
3+
"version": "3.2.5",
44
"description": "Rename react-native app with just one command",
55
"main": "lib/index.js",
66
"type": "module",

src/paths.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export const getOtherUpdateFilesContentOptions = ({
289289
newAndroidBundleID,
290290
newIosBundleID,
291291
}) => {
292-
const cleanNewPathContentStr = newPathContentStr.replaceAll(' ', '').toLowerCase();
292+
const cleanNewPathContentStr = newPathContentStr.replace(/\s/g, '').toLowerCase();
293293

294294
return [
295295
{

0 commit comments

Comments
 (0)