git clone git@github.com:mjmasn/FastMetro.git
cd FastMetro
yarn
node node_modules/react-native/local-cli/cli.js start --reset-cache
react-native run-android
# That was fast!react-native init --version 0.56.1 FastMetroAdded rn-cli.config.js as per @rafeca's example:
const Metro = require('metro');
Metro.Logger.on('log', logEntry => {
if (
logEntry.action_name === 'Transforming file' &&
logEntry.action_phase === 'end'
) {
console.log(logEntry.file_name, logEntry.duration_ms);
}
});Run the build:
node node_modules/react-native/local-cli/cli.js start --reset-cache
react-native run-androidOutput:
FastMetro/index.js 173
FastMetro/app.json 0
FastMetro/node_modules/react-native/Libraries/react-native/react-native-implementation.js 179
FastMetro/App.js 298
FastMetro/node_modules/react-native/Libraries/Components/CheckBox/CheckBox.android.js 46
FastMetro/node_modules/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.js 120
FastMetro/node_modules/react-native/Libraries/Components/DatePicker/DatePickerIOS.android.js 30
FastMetro/node_modules/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js 70
FastMetro/node_modules/react-native/Libraries/Image/Image.android.js 57
FastMetro/node_modules/react-native/Libraries/Lists/FlatList.js 131
FastMetro/node_modules/react-native/Libraries/Image/ImageEditor.js 19
FastMetro/node_modules/react-native/Libraries/ART/ReactNativeART.js 290
FastMetro/node_modules/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.android.js 217
FastMetro/node_modules/react-native/Libraries/Image/ImageStore.js 15
FastMetro/node_modules/react-native/Libraries/Components/Button.js 359
FastMetro/node_modules/react-native/Libraries/Components/TextInput/InputAccessoryView.js 32
FastMetro/node_modules/react-native/node_modules/fbjs/lib/invariant.js 261
FastMetro/node_modules/react-native/Libraries/Components/MaskedView/MaskedViewIOS.android.js 3
FastMetro/node_modules/react-native/Libraries/Components/Navigation/NavigatorIOS.android.js 5
FastMetro/node_modules/react-native/Libraries/Image/ImageBackground.js 81
FastMetro/node_modules/react-native/Libraries/Components/Picker/PickerIOS.android.js 2
FastMetro/node_modules/react-native/Libraries/Modal/Modal.js 60
FastMetro/node_modules/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js 48
FastMetro/node_modules/react-native/Libraries/Components/Picker/Picker.js 80
FastMetro/node_modules/react-native/Libraries/Components/SafeAreaView/SafeAreaView.android.js 2
FastMetro/node_modules/react-native/Libraries/Lists/ListView/ListView.js 120
FastMetro/node_modules/react-native/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js 15
FastMetro/node_modules/react-native/Libraries/RCTTest/SnapshotViewIOS.android.js 3
FastMetro/node_modules/react-native/Libraries/Components/ProgressViewIOS/ProgressViewIOS.android.js 149
FastMetro/node_modules/react-native/Libraries/Components/Slider/Slider.js 26
FastMetro/node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.js 227
FastMetro/node_modules/react-native/Libraries/Components/Switch/Switch.js 61
FastMetro/node_modules/react-native/Libraries/Lists/SectionList.js 127
FastMetro/node_modules/react-native/Libraries/Components/StatusBar/StatusBar.js 70
FastMetro/node_modules/react-native/Libraries/Components/TabBarIOS/TabBarIOS.android.js 29
FastMetro/node_modules/react-native/Libraries/Components/RefreshControl/RefreshControl.js 114
FastMetro/node_modules/react-native/Libraries/Components/ScrollView/ScrollView.js 165
FastMetro/node_modules/react-native/Libraries/Components/ToastAndroid/ToastAndroid.android.js 13
FastMetro/node_modules/react-native/Libraries/Experimental/SwipeableRow/SwipeableFlatList.js 83
FastMetro/node_modules/react-native/Libraries/Experimental/SwipeableRow/SwipeableListView.js 98
FastMetro/node_modules/react-native/Libraries/Text/Text.js 95
FastMetro/node_modules/react-native/Libraries/Components/ToolbarAndroid/ToolbarAndroid.android.js 50
FastMetro/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js 44
FastMetro/node_modules/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.android.js 35
FastMetro/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js 39
FastMetro/node_modules/react-native/Libraries/Components/View/View.js 12
FastMetro/node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.js 20
FastMetro/node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.js 11
FastMetro/node_modules/react-native/Libraries/Components/Touchable/Touchable.js 119
FastMetro/node_modules/react-native/Libraries/Components/TextInput/TextInput.js 152
FastMetro/node_modules/react-native/Libraries/Alert/Alert.js 29
FastMetro/node_modules/react-native/Libraries/Components/ViewPager/ViewPagerAndroid.android.js 61
FastMetro/node_modules/react-native/Libraries/Animated/src/Animated.js 8
FastMetro/node_modules/react-native/Libraries/Alert/AlertIOS.js 42
FastMetro/node_modules/react-native/Libraries/ReactNative/AppRegistry.js 31
FastMetro/node_modules/react-native/Libraries/Utilities/BackHandler.android.js 8
FastMetro/node_modules/react-native/Libraries/Utilities/BackAndroid.js 5
FastMetro/node_modules/react-native/Libraries/Components/Clipboard/Clipboard.js 4
FastMetro/node_modules/react-native/Libraries/Components/WebView/WebView.android.js 111
FastMetro/node_modules/react-native/Libraries/Utilities/DeviceInfo.js 4
FastMetro/node_modules/react-native/Libraries/CameraRoll/CameraRoll.js 36
FastMetro/node_modules/react-native/Libraries/Storage/AsyncStorage.js 73
FastMetro/node_modules/react-native/Libraries/Renderer/shims/ReactNative.js 3
FastMetro/node_modules/react-native/Libraries/AppState/AppState.js 97
FastMetro/node_modules/react-native/Libraries/ReactNative/I18nManager.js 4
FastMetro/node_modules/react-native/Libraries/Components/DatePickerAndroid/DatePickerAndroid.android.js 53
FastMetro/node_modules/react-native/Libraries/Components/Keyboard/Keyboard.js 9
FastMetro/node_modules/react-native/Libraries/CameraRoll/ImagePickerIOS.js 13
FastMetro/node_modules/react-native/Libraries/Utilities/Dimensions.js 30
FastMetro/node_modules/react-native/Libraries/Animated/src/Easing.js 38
FastMetro/node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.js 17
FastMetro/node_modules/react-native/Libraries/Interaction/InteractionManager.js 25
FastMetro/node_modules/react-native/Libraries/Linking/Linking.js 21
FastMetro/node_modules/react-native/Libraries/Utilities/PixelRatio.js 14
FastMetro/node_modules/react-native/Libraries/Network/NetInfo.js 33
FastMetro/node_modules/react-native/Libraries/Settings/Settings.android.js 5
FastMetro/node_modules/react-native/Libraries/Interaction/PanResponder.js 24
FastMetro/node_modules/react-native/Libraries/Components/StatusBar/StatusBarIOS.android.js 2
FastMetro/node_modules/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.js 47
FastMetro/node_modules/react-native/Libraries/Share/Share.js 27
FastMetro/node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.js 60
FastMetro/node_modules/react-native/Libraries/StyleSheet/StyleSheet.js 24
FastMetro/node_modules/react-native/Libraries/Components/AppleTV/TVEventHandler.js 7
FastMetro/node_modules/react-native/Libraries/Components/TimePickerAndroid/TimePickerAndroid.android.js 10
FastMetro/node_modules/react-native/Libraries/Vibration/VibrationIOS.android.js 4
FastMetro/node_modules/react-native/Libraries/Performance/Systrace.js 19
FastMetro/node_modules/react-native/Libraries/Vibration/Vibration.js 23
FastMetro/node_modules/react-native/Libraries/ReactNative/UIManager.js 28
FastMetro/node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.js 5
FastMetro/node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.js 72
FastMetro/node_modules/react-native/Libraries/StyleSheet/processColor.js 6
FastMetro/node_modules/react-native/Libraries/Utilities/Platform.android.js 10
FastMetro/node_modules/react-native/Libraries/ReactNative/takeSnapshot.js 4
FastMetro/node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.js 38
FastMetro/node_modules/react-native/Libraries/StyleSheet/ColorPropType.js 7
FastMetro/node_modules/react-native/Libraries/StyleSheet/EdgeInsetsPropType.js 3
FastMetro/node_modules/react-native/Libraries/StyleSheet/PointPropType.js 3
FastMetro/node_modules/react/index.js 3
FastMetro/node_modules/react-native/Libraries/YellowBox/YellowBox.js 62
FastMetro/node_modules/react-native/Libraries/Renderer/shims/NativeMethodsMixin.js 4
FastMetro/node_modules/react-native/Libraries/Components/View/ViewPropTypes.js 24
FastMetro/node_modules/react-native/Libraries/react-native/React.js 2
FastMetro/node_modules/prop-types/index.js 4
FastMetro/node_modules/create-react-class/index.js 3
FastMetro/node_modules/react-native/Libraries/Utilities/dismissKeyboard.js 2
FastMetro/node_modules/react-native/Libraries/ReactNative/requireNativeComponent.js 45
FastMetro/node_modules/react-transform-hmr/lib/index.js 28
FastMetro/node_modules/react-native/Libraries/Components/View/ReactNativeViewAttributes.js 8
FastMetro/node_modules/react-native/Libraries/Text/TextAncestor.js 2
FastMetro/node_modules/react-native/Libraries/StyleSheet/StyleSheetPropType.js 5
FastMetro/node_modules/react-native/Libraries/vendor/core/merge.js 4
FastMetro/node_modules/react-native/Libraries/StyleSheet/flattenStyle.js 6
FastMetro/node_modules/react-native/Libraries/Image/ImageStylePropTypes.js 18
FastMetro/node_modules/react-native/Libraries/BatchedBridge/NativeModules.js 75
FastMetro/node_modules/react-native/Libraries/ART/ARTSerializablePath.js 15
FastMetro/node_modules/react-native/Libraries/Image/resolveAssetSource.js 27
FastMetro/node_modules/react-native/Libraries/Renderer/shims/createReactNativeComponentClass.js 4
FastMetro/node_modules/react-native/Libraries/Components/Touchable/ensureComponentIsNative.js 4
FastMetro/node_modules/react-native/Libraries/Components/UnimplementedViews/UnimplementedView.js 25
FastMetro/node_modules/react-native/Libraries/Utilities/deprecatedPropType.js 6
FastMetro/node_modules/art/core/transform.js 56
FastMetro/node_modules/art/core/color.js 52
FastMetro/node_modules/react-native/Libraries/Lists/MetroListView.js 112
FastMetro/node_modules/react-native/Libraries/Text/TextStylePropTypes.js 11
FastMetro/node_modules/react-native/Libraries/ReactNative/AppContainer.js 65
FastMetro/node_modules/react-native/Libraries/Components/View/ViewStylePropTypes.js 8
FastMetro/node_modules/react-native/Libraries/Components/StaticRenderer.js 17
FastMetro/node_modules/react-native/Libraries/Lists/ListView/InternalListViewType.js 18
FastMetro/node_modules/react-native/Libraries/Components/Picker/PickerAndroid.android.js 70
FastMetro/node_modules/react-timer-mixin/TimerMixin.js 10
FastMetro/node_modules/react-clone-referenced-element/cloneReferencedElement.js 11
FastMetro/node_modules/react-native/node_modules/fbjs/lib/nullthrows.js 2
FastMetro/node_modules/react-native/node_modules/fbjs/lib/warning.js 7
FastMetro/node_modules/react-native/Libraries/Components/ScrollResponder.js 45
FastMetro/node_modules/react-native/Libraries/vendor/core/isEmpty.js 4
FastMetro/node_modules/react-native/Libraries/Lists/VirtualizedList.js 560
FastMetro/node_modules/react-native/Libraries/Components/TabBarIOS/TabBarItemIOS.android.js 18
FastMetro/node_modules/react-native/Libraries/Components/ScrollView/processDecelerationRate.js 6
FastMetro/node_modules/react-native/Libraries/Components/ScrollView/ScrollViewStickyHeader.js 40
FastMetro/node_modules/react-native/Libraries/Lists/ListView/ListViewDataSource.js 95
FastMetro/node_modules/react-native/Libraries/Components/ScrollView/InternalScrollViewType.js 29
FastMetro/node_modules/react-native/Libraries/Text/TextPropTypes.js 8
FastMetro/node_modules/react-native/Libraries/Components/Touchable/ensurePositiveDelayProps.js 3
FastMetro/node_modules/react-native/Libraries/Components/Touchable/BoundingDimensions.js 3
FastMetro/node_modules/react-native/Libraries/Components/View/ViewAccessibility.js 4
FastMetro/node_modules/react-native/Libraries/Components/Touchable/Position.js 3
FastMetro/node_modules/react-native/Libraries/Experimental/SwipeableRow/SwipeableListViewDataSource.js 15
FastMetro/node_modules/react-native/node_modules/fbjs/lib/keyMirror.js 7
FastMetro/node_modules/react-native/node_modules/fbjs/lib/TouchEventUtils.js 7
FastMetro/node_modules/react-native/Libraries/vendor/document/selection/DocumentSelectionState.js 17
FastMetro/node_modules/react-native/Libraries/Animated/src/AnimatedImplementation.js 108
FastMetro/node_modules/react-native/node_modules/fbjs/lib/emptyFunction.js 4
FastMetro/node_modules/react-native/Libraries/Components/TextInput/TextInputState.js 14
FastMetro/node_modules/react-native/Libraries/BatchedBridge/BatchedBridge.js 3
FastMetro/node_modules/react-native/Libraries/Color/normalizeColor.js 41
FastMetro/node_modules/react-native/Libraries/Utilities/infoLog.js 3
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventEmitter.js 50
FastMetro/node_modules/react-native/Libraries/Experimental/SwipeableRow/SwipeableRow.js 75
FastMetro/node_modules/react-native/Libraries/Utilities/SceneTracker.js 7
FastMetro/node_modules/react-native/Libraries/Components/WebView/WebViewShared.js 5
FastMetro/node_modules/react-native/Libraries/ReactNative/renderApplication.js 9
FastMetro/node_modules/react-native/Libraries/Utilities/createStrictShapeTypeChecker.js 16
FastMetro/node_modules/react-native/Libraries/Lists/VirtualizedSectionList.js 169
FastMetro/node_modules/react-native/Libraries/EventEmitter/MissingNativeEventEmitterShim.js 19
FastMetro/node_modules/react-native/Libraries/BugReporting/BugReporting.js 42
FastMetro/node_modules/react-native/Libraries/Utilities/logError.js 11
FastMetro/node_modules/react-native/Libraries/Animated/src/bezier.js 24
FastMetro/node_modules/react-native/Libraries/vendor/core/Set.js 20
FastMetro/node_modules/react-native/Libraries/Interaction/TouchHistoryMath.js 11
FastMetro/node_modules/react-native/Libraries/Interaction/TaskQueue.js 45
FastMetro/node_modules/react-native/Libraries/Utilities/defineLazyObjectProperty.js 5
FastMetro/node_modules/react-native/Libraries/Components/View/ReactNativeStyleAttributes.js 26
FastMetro/node_modules/react-native/Libraries/StyleSheet/StyleSheetValidation.js 20
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventSubscriptionVendor.js 16
FastMetro/node_modules/react-native/Libraries/vendor/core/Map.js 66
FastMetro/node_modules/react-native/Libraries/Utilities/RCTLog.js 13
FastMetro/node_modules/react/cjs/react.production.min.js 36
FastMetro/node_modules/react-native/Libraries/Components/View/PlatformViewPropTypes.js 13
FastMetro/node_modules/react-native/Libraries/YellowBox/Data/YellowBoxRegistry.js 51
FastMetro/node_modules/prop-types/factoryWithThrowingShims.js 5
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxList.js 96
FastMetro/node_modules/react-native/Libraries/Utilities/differ/insetsDiffer.js 6
FastMetro/node_modules/prop-types/factoryWithTypeCheckers.js 64
FastMetro/node_modules/react-native/Libraries/Utilities/differ/matricesDiffer.js 5
FastMetro/node_modules/react-native/Libraries/Utilities/differ/pointsDiffer.js 4
FastMetro/node_modules/react-native/Libraries/Utilities/differ/sizesDiffer.js 3
FastMetro/node_modules/react-proxy/modules/index.js 5
FastMetro/node_modules/global/window.js 3
FastMetro/node_modules/react-native/Libraries/vendor/core/mergeInto.js 4
FastMetro/node_modules/react-native/Libraries/Image/ImageResizeMode.js 4
FastMetro/node_modules/create-react-class/factory.js 39
FastMetro/node_modules/react-native/Libraries/Components/View/ShadowPropTypesIOS.js 3
FastMetro/node_modules/react-native/Libraries/StyleSheet/TransformPropTypes.js 9
FastMetro/node_modules/art/core/class.js 6
FastMetro/node_modules/react-native/Libraries/Image/AssetRegistry.js 9
FastMetro/node_modules/react-native/Libraries/StyleSheet/LayoutPropTypes.js 23
FastMetro/node_modules/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js 28
FastMetro/node_modules/react/cjs/react.development.js 138
FastMetro/node_modules/react-native/Libraries/Image/AssetSourceResolver.js 40
FastMetro/node_modules/art/core/path.js 46
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EmitterSubscription.js 33
FastMetro/node_modules/react-native/node_modules/fbjs/lib/performanceNow.js 3
FastMetro/node_modules/react-native/Libraries/Components/Subscribable.js 4
FastMetro/node_modules/react-native/Libraries/Interaction/FrameRateLogger.js 13
FastMetro/node_modules/react-native/Libraries/Interaction/Batchinator.js 16
FastMetro/node_modules/react-native/Libraries/Inspector/Inspector.js 71
FastMetro/node_modules/react-native/Libraries/Lists/VirtualizeUtils.js 45
FastMetro/node_modules/react-native/Libraries/Lists/FillRateHelper.js 61
FastMetro/node_modules/react-native/Libraries/Lists/ViewabilityHelper.js 81
FastMetro/node_modules/react-native/Libraries/Components/Touchable/PooledClass.js 11
FastMetro/node_modules/react-native/Libraries/vendor/emitter/mixInEventEmitter.js 22
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedDiffClamp.js 23
FastMetro/node_modules/react-native/Libraries/Animated/src/AnimatedEvent.js 45
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedAddition.js 42
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedDivision.js 37
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedModulo.js 33
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedMultiplication.js 20
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedNode.js 23
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedInterpolation.js 43
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedSubtraction.js 24
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedValue.js 41
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedTracking.js 32
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedProps.js 67
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedValueXY.js 58
FastMetro/node_modules/react-native/Libraries/Animated/src/animations/DecayAnimation.js 33
FastMetro/node_modules/react-native/Libraries/Animated/src/animations/TimingAnimation.js 46
FastMetro/node_modules/react-native/Libraries/Animated/src/createAnimatedComponent.js 48
FastMetro/node_modules/react-native/Libraries/Animated/src/animations/SpringAnimation.js 74
FastMetro/node_modules/react-native/Libraries/BugReporting/dumpReactTree.js 6
FastMetro/node_modules/escape-string-regexp/index.js 4
FastMetro/node_modules/react-native/Libraries/Renderer/shims/ReactFabric.js 3
FastMetro/node_modules/react-native/Libraries/vendor/core/_shouldPolyfillES6Collection.js 5
FastMetro/node_modules/react-native/Libraries/vendor/core/toIterator.js 28
FastMetro/node_modules/react-native/Libraries/StyleSheet/processTransform.js 14
FastMetro/node_modules/react-native/Libraries/BatchedBridge/MessageQueue.js 89
FastMetro/node_modules/react-native/Libraries/vendor/core/guid.js 6
FastMetro/node_modules/fbjs/lib/emptyObject.js 2
FastMetro/node_modules/fbjs/lib/invariant.js 4
FastMetro/node_modules/fbjs/lib/emptyFunction.js 3
FastMetro/node_modules/react-native/node_modules/fbjs/lib/isNode.js 16
FastMetro/node_modules/object-assign/index.js 7
FastMetro/node_modules/react-native/Libraries/Components/AppleTV/TVViewPropTypes.js 7
FastMetro/node_modules/prop-types/lib/ReactPropTypesSecret.js 2
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxButton.js 5
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxStyle.js 4
FastMetro/node_modules/prop-types/checkPropTypes.js 7
FastMetro/node_modules/react-native/Libraries/YellowBox/Data/YellowBoxWarning.js 28
FastMetro/node_modules/react-proxy/modules/supportsProtoAssignment.js 6
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxListRow.js 32
FastMetro/node_modules/react-deep-force-update/lib/index.js 7
FastMetro/node_modules/react-native/Libraries/vendor/core/mergeHelpers.js 5
FastMetro/node_modules/fbjs/lib/warning.js 5
FastMetro/node_modules/react-native/local-cli/bundle/assetPathUtils.js 6
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventSubscription.js 7
FastMetro/node_modules/react-native/node_modules/fbjs/lib/performance.js 2
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxInspector.js 52
FastMetro/node_modules/react-proxy/modules/createClassProxy.js 30
FastMetro/node_modules/react-native/node_modules/fbjs/lib/emptyObject.js 3
FastMetro/node_modules/react-native/Libraries/Inspector/InspectorOverlay.js 26
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventHolder.js 18
FastMetro/node_modules/react-native/node_modules/fbjs/lib/keyOf.js 2
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventEmitterWithHolding.js 23
FastMetro/node_modules/react-native/Libraries/vendor/emitter/EventValidator.js 12
FastMetro/node_modules/react-native/Libraries/Inspector/InspectorPanel.js 43
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedWithChildren.js 25
FastMetro/node_modules/react-native/Libraries/Animated/src/animations/Animation.js 11
FastMetro/node_modules/react-native/Libraries/Animated/src/NativeAnimatedHelper.js 24
FastMetro/node_modules/react-native/Libraries/Animated/src/SpringConfig.js 12
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedStyle.js 43
FastMetro/node_modules/react-native/Libraries/Utilities/stringifySafe.js 10
FastMetro/node_modules/react-native/Libraries/vendor/core/ErrorUtils.js 1
FastMetro/node_modules/react-native/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js 5
FastMetro/node_modules/react-native/Libraries/Core/Timers/JSTimers.js 70
FastMetro/node_modules/react-native/Libraries/Utilities/MatrixMath.js 120
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxPressable.js 28
FastMetro/node_modules/react-native/Libraries/YellowBox/Data/YellowBoxSymbolication.js 19
FastMetro/node_modules/react-native/Libraries/Core/Devtools/parseErrorStack.js 4
FastMetro/node_modules/react-native/node_modules/fbjs/lib/ExecutionEnvironment.js 3
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxInspectorFooter.js 6
FastMetro/node_modules/react-native/Libraries/YellowBox/Data/YellowBoxCategory.js 50
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxInspectorHeader.js 12
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxInspectorStackFrame.js 13
FastMetro/node_modules/react-native/Libraries/Core/Devtools/openFileInEditor.js 3
FastMetro/node_modules/lodash/find.js 2
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxInspectorSourceMapStatus.js 36
FastMetro/node_modules/react-native/Libraries/Renderer/oss/ReactNativeRenderer-prod.js 1013
FastMetro/node_modules/react-proxy/modules/deleteUnknownAutoBindMethods.js 6
FastMetro/node_modules/react-proxy/modules/createPrototypeProxy.js 12
FastMetro/node_modules/react-proxy/modules/bindAutoBindMethods.js 7
FastMetro/node_modules/react-native/Libraries/Inspector/ElementBox.js 27
FastMetro/node_modules/react-native/Libraries/Inspector/ElementProperties.js 38
FastMetro/node_modules/react-native/Libraries/Inspector/PerformanceOverlay.js 20
FastMetro/node_modules/react-native/Libraries/Core/Devtools/symbolicateStackTrace.js 22
FastMetro/node_modules/stacktrace-parser/index.js 2
FastMetro/node_modules/react-native/Libraries/UTFSequence.js 3
FastMetro/node_modules/react-native/Libraries/Animated/src/nodes/AnimatedTransform.js 49
FastMetro/node_modules/react-native/Libraries/Core/Devtools/getDevServer.js 9
FastMetro/node_modules/lodash/_createFind.js 4
FastMetro/node_modules/react-native/Libraries/YellowBox/UI/YellowBoxImageSource.js 4
FastMetro/node_modules/lodash/findIndex.js 4
FastMetro/node_modules/react-native/Libraries/EventEmitter/RCTEventEmitter.js 3
FastMetro/node_modules/react-native/Libraries/Utilities/differ/deepDiffer.js 8
FastMetro/node_modules/react-native/Libraries/Core/ExceptionsManager.js 16
FastMetro/node_modules/react-native/Libraries/Core/InitializeCore.js 46
FastMetro/node_modules/lodash/assign.js 19
FastMetro/node_modules/lodash/difference.js 5
FastMetro/node_modules/react-native/Libraries/Inspector/resolveBoxStyle.js 21
FastMetro/node_modules/react-native/Libraries/Inspector/NetworkOverlay.js 179
FastMetro/node_modules/react-native/Libraries/Inspector/BorderBox.js 25
FastMetro/node_modules/react-native/Libraries/Utilities/mapWithSeparator.js 4
FastMetro/node_modules/react-native/Libraries/Inspector/BoxInspector.js 38
FastMetro/node_modules/react-native/Libraries/Utilities/PerformanceLogger.js 22
FastMetro/node_modules/react-native/Libraries/Network/fetch.js 3
FastMetro/node_modules/react-native/Libraries/Inspector/StyleInspector.js 25
FastMetro/node_modules/lodash/_baseIteratee.js 3
FastMetro/node_modules/stacktrace-parser/lib/stacktrace-parser.js 6
FastMetro/node_modules/lodash/isArrayLike.js 2
FastMetro/node_modules/lodash/keys.js 2
FastMetro/node_modules/lodash/_baseFindIndex.js 3
FastMetro/node_modules/lodash/toInteger.js 2
FastMetro/node_modules/react-native/Libraries/Core/ReactNativeVersionCheck.js 3
FastMetro/node_modules/react-native/Libraries/Promise.js 6
FastMetro/node_modules/react-native/Libraries/Utilities/PolyfillFunctions.js 11
FastMetro/node_modules/react-native/Libraries/Network/FormData.js 41
FastMetro/node_modules/regenerator-runtime/runtime.js 54
FastMetro/node_modules/react-native/Libraries/Blob/Blob.js 21
FastMetro/node_modules/react-native/Libraries/WebSocket/WebSocket.js 54
FastMetro/node_modules/react-native/Libraries/Network/XMLHttpRequest.js 110
FastMetro/node_modules/react-native/Libraries/Blob/File.js 20
FastMetro/node_modules/react-native/Libraries/Blob/URL.js 8
FastMetro/node_modules/react-native/Libraries/Utilities/HeapCapture.js 3
FastMetro/node_modules/react-native/Libraries/Performance/SamplingProfiler.js 2
FastMetro/node_modules/react-native/Libraries/Blob/FileReader.js 32
FastMetro/node_modules/react-native/Libraries/Utilities/JSDevSupportModule.js 2
FastMetro/node_modules/react-native/Libraries/Core/Devtools/setupDevtools.js 3
FastMetro/node_modules/react-native/Libraries/Geolocation/Geolocation.js 24
FastMetro/node_modules/react-native/Libraries/JSInspector/JSInspector.js 4
FastMetro/node_modules/react-native/Libraries/Utilities/HMRClient.js 7
FastMetro/node_modules/lodash/_assignValue.js 3
FastMetro/node_modules/lodash/_copyObject.js 4
FastMetro/node_modules/lodash/_isPrototype.js 2
FastMetro/node_modules/lodash/_createAssigner.js 4
FastMetro/node_modules/lodash/_baseDifference.js 9
FastMetro/node_modules/lodash/_baseRest.js 2
FastMetro/node_modules/lodash/_baseFlatten.js 14
FastMetro/node_modules/lodash/isArrayLikeObject.js 4
FastMetro/node_modules/react-native/Libraries/WebSocket/WebSocketInterceptor.js 22
FastMetro/node_modules/react-native/Libraries/JSInspector/NetworkAgent.js 61
FastMetro/node_modules/react-native/Libraries/Network/XHRInterceptor.js 27
FastMetro/node_modules/lodash/_baseMatches.js 5
FastMetro/node_modules/lodash/identity.js 2
FastMetro/node_modules/lodash/isArray.js 2
FastMetro/node_modules/lodash/property.js 4
FastMetro/node_modules/lodash/isFunction.js 3
FastMetro/node_modules/lodash/isLength.js 2
FastMetro/node_modules/lodash/_baseMatchesProperty.js 5
FastMetro/node_modules/lodash/_arrayLikeKeys.js 5
FastMetro/node_modules/lodash/_baseKeys.js 3
FastMetro/node_modules/react-native/Libraries/Core/ReactNativeVersion.js 6
FastMetro/node_modules/lodash/toFinite.js 9
FastMetro/node_modules/react-native/node_modules/fbjs/lib/Promise.native.js 3
FastMetro/node_modules/promise/setimmediate/rejection-tracking.js 12
FastMetro/node_modules/react-native/Libraries/vendor/core/whatwg-fetch.js 44
FastMetro/node_modules/react-native/node_modules/pretty-format/index.js 36
FastMetro/node_modules/event-target-shim/lib/event-target.js 18
FastMetro/node_modules/react-native/Libraries/WebSocket/WebSocketEvent.js 6
FastMetro/node_modules/react-native/Libraries/Utilities/binaryToBase64.js 3
FastMetro/node_modules/react-native/Libraries/Blob/BlobManager.js 58
FastMetro/node_modules/react-native/Libraries/Renderer/oss/ReactNativeRenderer-dev.js 1463
FastMetro/node_modules/metro/src/lib/bundle-modules/HMRClient.js 3
FastMetro/node_modules/base64-js/index.js 27
FastMetro/node_modules/react-native/Libraries/Network/RCTNetworking.android.js 52
FastMetro/node_modules/react-native/Libraries/Utilities/HMRLoadingView.android.js 9
FastMetro/node_modules/lodash/_baseAssignValue.js 2
FastMetro/node_modules/lodash/eq.js 2
FastMetro/node_modules/react-native/Libraries/Renderer/oss/ReactFabric-prod.js 718
FastMetro/node_modules/lodash/_isIterateeCall.js 6
FastMetro/node_modules/lodash/_SetCache.js 3
FastMetro/node_modules/lodash/_arrayIncludes.js 2
FastMetro/node_modules/lodash/_baseUnary.js 2
FastMetro/node_modules/lodash/_arrayMap.js 4
FastMetro/node_modules/lodash/_cacheHas.js 4
FastMetro/node_modules/lodash/_arrayPush.js 2
FastMetro/node_modules/lodash/_overRest.js 5
FastMetro/node_modules/lodash/isObjectLike.js 3
FastMetro/node_modules/lodash/_setToString.js 14
FastMetro/node_modules/lodash/_isFlattenable.js 5
FastMetro/node_modules/lodash/_getMatchData.js 2
FastMetro/node_modules/lodash/_baseIsMatch.js 4
FastMetro/node_modules/react-native/Libraries/JSInspector/InspectorAgent.js 6
FastMetro/node_modules/lodash/_baseProperty.js 2
FastMetro/node_modules/lodash/_basePropertyDeep.js 2
FastMetro/node_modules/lodash/_matchesStrictComparable.js 4
FastMetro/node_modules/lodash/_arrayIncludesWith.js 43
FastMetro/node_modules/lodash/_toKey.js 3
FastMetro/node_modules/lodash/_isKey.js 4
FastMetro/node_modules/lodash/_baseGetTag.js 5
FastMetro/node_modules/lodash/get.js 3
FastMetro/node_modules/lodash/_baseIsEqual.js 4
FastMetro/node_modules/lodash/_isStrictComparable.js 2
FastMetro/node_modules/lodash/isObject.js 2
FastMetro/node_modules/lodash/hasIn.js 1
FastMetro/node_modules/lodash/_baseTimes.js 3
FastMetro/node_modules/lodash/isArguments.js 4
FastMetro/node_modules/lodash/_isIndex.js 5
FastMetro/node_modules/lodash/isTypedArray.js 3
FastMetro/node_modules/lodash/isBuffer.js 8
FastMetro/node_modules/lodash/_nativeKeys.js 4
FastMetro/node_modules/lodash/toNumber.js 7
FastMetro/node_modules/promise/setimmediate/done.js 5
FastMetro/node_modules/react-native/node_modules/pretty-format/printString.js 2
FastMetro/node_modules/promise/setimmediate/es6-extensions.js 13
FastMetro/node_modules/event-target-shim/lib/commons.js 7
FastMetro/node_modules/react-native/Libraries/Blob/BlobRegistry.js 4
FastMetro/node_modules/promise/setimmediate/core.js 17
FastMetro/node_modules/event-target-shim/lib/custom-event-target.js 6
FastMetro/node_modules/event-target-shim/lib/event-wrapper.js 11
FastMetro/node_modules/react-native/Libraries/Network/convertRequestBody.js 5
FastMetro/node_modules/lodash/_defineProperty.js 2
FastMetro/node_modules/react-native/Libraries/ReactNative/FabricUIManager.js 4
FastMetro/node_modules/lodash/_setCacheAdd.js 7
FastMetro/node_modules/lodash/_baseIndexOf.js 2
FastMetro/node_modules/lodash/_apply.js 2
FastMetro/node_modules/lodash/_setCacheHas.js 12
FastMetro/node_modules/lodash/_baseSetToString.js 2
FastMetro/node_modules/lodash/_Symbol.js 1
FastMetro/node_modules/lodash/_shortOut.js 3
FastMetro/node_modules/lodash/_MapCache.js 11
FastMetro/node_modules/metro/src/lib/bundle-modules/MetroClient.js 29
FastMetro/node_modules/lodash/_Stack.js 2
FastMetro/node_modules/lodash/_baseGet.js 3
FastMetro/node_modules/lodash/isSymbol.js 3
FastMetro/node_modules/lodash/_objectToString.js 2
FastMetro/node_modules/lodash/_getRawTag.js 4
FastMetro/node_modules/lodash/_baseHasIn.js 9
FastMetro/node_modules/lodash/_baseIsArguments.js 2
FastMetro/node_modules/lodash/_hasPath.js 3
FastMetro/node_modules/lodash/_baseIsEqualDeep.js 7
FastMetro/node_modules/lodash/_nodeUtil.js 3
FastMetro/node_modules/lodash/_root.js 2
FastMetro/node_modules/lodash/_overArg.js 4
FastMetro/node_modules/lodash/stubFalse.js 6
FastMetro/node_modules/lodash/_getNative.js 3
FastMetro/node_modules/lodash/_baseIsNaN.js 2
FastMetro/node_modules/lodash/_strictIndexOf.js 2
FastMetro/node_modules/lodash/constant.js 2
FastMetro/node_modules/lodash/_mapCacheDelete.js 2
FastMetro/node_modules/lodash/_mapCacheGet.js 2
FastMetro/node_modules/lodash/_mapCacheClear.js 5
FastMetro/node_modules/lodash/_mapCacheHas.js 2
FastMetro/node_modules/lodash/_baseIsTypedArray.js 7
FastMetro/node_modules/lodash/_mapCacheSet.js 2
FastMetro/node_modules/lodash/_stackDelete.js 2
FastMetro/node_modules/lodash/_stackClear.js 2
FastMetro/node_modules/lodash/_stackGet.js 2
FastMetro/node_modules/lodash/_stackHas.js 2
FastMetro/node_modules/lodash/_ListCache.js 3
FastMetro/node_modules/lodash/_stackSet.js 4
FastMetro/node_modules/lodash/_castPath.js 2
FastMetro/node_modules/lodash/_equalArrays.js 5
FastMetro/node_modules/eventemitter3/index.js 20
FastMetro/node_modules/lodash/_freeGlobal.js 2
FastMetro/node_modules/lodash/_equalByTag.js 18
FastMetro/node_modules/lodash/_equalObjects.js 13
FastMetro/node_modules/lodash/_getValue.js 3
FastMetro/node_modules/lodash/_baseIsNative.js 4
FastMetro/node_modules/lodash/_Map.js 3
FastMetro/node_modules/lodash/_getMapData.js 3
FastMetro/node_modules/lodash/_getTag.js 13
FastMetro/node_modules/lodash/_Hash.js 6
FastMetro/node_modules/lodash/_listCacheDelete.js 3
FastMetro/node_modules/lodash/_listCacheClear.js 4
FastMetro/node_modules/lodash/_listCacheHas.js 2
FastMetro/node_modules/lodash/_listCacheGet.js 2
FastMetro/node_modules/lodash/_listCacheSet.js 2
FastMetro/node_modules/lodash/toString.js 2
FastMetro/node_modules/lodash/_stringToPath.js 3
FastMetro/node_modules/lodash/_arraySome.js 3
FastMetro/node_modules/lodash/_Uint8Array.js 4
FastMetro/node_modules/lodash/_mapToArray.js 3
FastMetro/node_modules/lodash/_setToArray.js 3
FastMetro/node_modules/lodash/_isMasked.js 2
FastMetro/node_modules/lodash/_toSource.js 3
FastMetro/node_modules/lodash/_isKeyable.js 9
FastMetro/node_modules/lodash/_DataView.js 5
FastMetro/node_modules/lodash/_getAllKeys.js 16
FastMetro/node_modules/lodash/_Promise.js 2
FastMetro/node_modules/lodash/_WeakMap.js 1
FastMetro/node_modules/lodash/_Set.js 3
FastMetro/node_modules/lodash/_hashClear.js 2
FastMetro/node_modules/lodash/_hashGet.js 3
FastMetro/node_modules/lodash/_hashHas.js 4
FastMetro/node_modules/lodash/_hashSet.js 2
FastMetro/node_modules/lodash/_assocIndexOf.js 2
FastMetro/node_modules/lodash/_hashDelete.js 2
FastMetro/node_modules/lodash/_baseToString.js 4
FastMetro/node_modules/lodash/_coreJsData.js 1
FastMetro/node_modules/lodash/_baseGetAllKeys.js 2
FastMetro/node_modules/lodash/_memoizeCapped.js 3
FastMetro/node_modules/lodash/_nativeCreate.js 3
FastMetro/node_modules/lodash/_getSymbols.js 3
FastMetro/node_modules/lodash/stubArray.js 3
FastMetro/node_modules/lodash/memoize.js 3
FastMetro/node_modules/lodash/_arrayFilter.js 3
FastMetro/node_modules/react-native/Libraries/Renderer/oss/ReactFabric-dev.js 1355
FastMetro/node_modules/react-devtools-core/build/backend.js 1220
FastMetro/node_modules/react-native/Libraries/polyfills/Number.es6.js 4
FastMetro/node_modules/react-native/Libraries/polyfills/Object.es6.js 4
FastMetro/node_modules/react-native/Libraries/polyfills/error-guard.js 7
FastMetro/node_modules/react-native/Libraries/polyfills/String.prototype.es6.js 10
FastMetro/node_modules/react-native/Libraries/polyfills/Object.es7.js 5
FastMetro/node_modules/react-native/Libraries/polyfills/Array.es6.js 6
FastMetro/node_modules/react-native/Libraries/polyfills/Array.prototype.es6.js 12
FastMetro/node_modules/metro/src/lib/polyfills/require.js 23
FastMetro/node_modules/react-native/Libraries/polyfills/console.js 32
FastMetro/node_modules/react-native/Libraries/polyfills/babelHelpers.js 31