Skip to content

Commit

Permalink
[expo] bump bundled version of react-native-svg
Browse files Browse the repository at this point in the history
  • Loading branch information
Simek committed Sep 12, 2022
1 parent c9efd57 commit 1473c3a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/bare-expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-shared-element": "0.8.4",
"react-native-svg": "12.3.0",
"react-native-svg": "12.4.4",
"react-native-view-shot": "3.3.0",
"react-native-webview": "11.22.4",
"test-suite": "*"
Expand Down
2 changes: 1 addition & 1 deletion apps/native-component-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
"react-native-safe-area-view": "^0.14.8",
"react-native-screens": "~3.15.0",
"react-native-shared-element": "0.8.4",
"react-native-svg": "12.3.0",
"react-native-svg": "12.4.4",
"react-native-view-shot": "3.3.0",
"react-native-web": "~0.18.7",
"react-native-webview": "11.22.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* returns the distance between two points
*/
CGFloat distance(CGPoint p1, CGPoint p2)
static CGFloat distance(CGPoint p1, CGPoint p2)
{
CGFloat dx = p2.x - p1.x;
CGFloat dy = p2.y - p1.y;
Expand Down Expand Up @@ -58,7 +58,7 @@ CGFloat distance(CGPoint p1, CGPoint p2)
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
void subdivideBezierAtT(const CGPoint bez[4], CGPoint bez1[4], CGPoint bez2[4], CGFloat t)
static void subdivideBezierAtT(const CGPoint bez[4], CGPoint bez1[4], CGPoint bez2[4], CGFloat t)
{
CGPoint q;
CGFloat mt = 1 - t;
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-stories/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"react-native-gesture-handler": "~2.5.0",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-svg": "12.4.4",
"sane": "^5.0.1"
}
}
2 changes: 1 addition & 1 deletion packages/expo/bundledNativeModules.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-shared-element": "0.8.4",
"react-native-svg": "12.3.0",
"react-native-svg": "12.4.4",
"react-native-view-shot": "3.3.0",
"react-native-webview": "11.23.0",
"sentry-expo": "~5.0.0",
Expand Down

0 comments on commit 1473c3a

Please sign in to comment.