From 98c3913b6273603c0642e975db1e7654909a4073 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Wed, 14 Apr 2021 08:17:34 -0700 Subject: [PATCH] Back out "Bump dependencies of ReactNativeFlipperExample" Summary: Original commit changeset: 7c72d541f9f2 / D26723361 (https://github.com/facebook/flipper/commit/4a71a5abd10ee7f66a722b3cae46590cab552b22) Pods are not released yet(?) and nor are our npm packages when our CI runs for the first time after pushing a release to GH, which would make the job always fail. Backing out of the process for now. For the npm package, dependabot will automatically take care of it. The gradle properties / podfile will remain manually bumps for now. Reviewed By: nikoant Differential Revision: D27764997 fbshipit-source-id: db505c2d0882f74b2f5d4e0454463a5e08501a90 --- scripts/bump/bump.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/bump/bump.hs b/scripts/bump/bump.hs index 0d1e39e17..f008dd713 100755 --- a/scripts/bump/bump.hs +++ b/scripts/bump/bump.hs @@ -41,9 +41,6 @@ releaseReplacements = ,("docs/getting-started/react-native-ios.mdx", spaces >> "flipperkit_version = '" *> releaseVersion <* "'" <* many anyChar) ,("docs/getting-started/react-native.mdx", many anyChar >> "`FLIPPER_VERSION=" *> releaseVersion <* "`.") ,("docs/getting-started/react-native.mdx", many anyChar >> "`use_flipper!({ 'Flipper' => '" *> releaseVersion <* "' })`.") - ,("react-native/ReactNativeFlipperExample/package.json", many anyChar >> "\"react-native-flipper\": \"^" *> releaseVersion <* "\"") - ,("react-native/ReactNativeFlipperExample/android/gradle.properties", many anyChar >> "FLIPPER_VERSION=" *> releaseVersion) - ,("react-native/ReactNativeFlipperExample/ios/Podfile", spaces >> "use_flipper!({ 'Flipper' => '" *> releaseVersion <* "' })") ] snapshotReplacements :: [(FilePath, Pattern Version)]