fix: include scripts/rnsvg_utils.rb in release (#2607)

# Summary

Hotfix for #2606, where `RNSVG.podspec` imports `scripts/rnsvg_utils.rb`
but `scripts` catalog is not included in the release.

Closes #2606

# Issue
```bash
❯ bundle exec pod install

[!] Invalid `Podfile` file:
[!] Invalid `RNSVG.podspec` file: cannot load such file -- /node_modules/react-native-svg/scripts/rnsvg_utils.

 #  from /node_modules/react-native-svg/RNSVG.podspec:2
 #  -------------------------------------------
 #  require 'json'
 >  require_relative './scripts/rnsvg_utils'
 #
 #  -------------------------------------------
```
This commit is contained in:
Jakub Grzywacz
2025-01-09 20:59:38 +01:00
committed by GitHub
parent 6d353737b3
commit 7f6fa1026b

View File

@@ -23,7 +23,8 @@
"RNSVG.podspec", "RNSVG.podspec",
"!android/build", "!android/build",
"windows", "windows",
"react-native.config.js" "react-native.config.js",
"scripts/rnsvg_utils.rb"
], ],
"react-native-builder-bob": { "react-native-builder-bob": {
"source": "src", "source": "src",