Skip to content

Commit

Permalink
Merge branch 'release/3.2.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
junedomingo committed Jan 5, 2023
2 parents bff73e3 + edf9fb6 commit c116935
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-rename",
"version": "3.2.4",
"version": "3.2.5",
"description": "Rename react-native app with just one command",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export const getOtherUpdateFilesContentOptions = ({
newAndroidBundleID,
newIosBundleID,
}) => {
const cleanNewPathContentStr = newPathContentStr.replaceAll(' ', '').toLowerCase();
const cleanNewPathContentStr = newPathContentStr.replace(/\s/g, '').toLowerCase();

return [
{
Expand Down

0 comments on commit c116935

Please sign in to comment.