forked from rainbow-me/rainbow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
29 lines (25 loc) · 1.01 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* eslint-disable import/no-commonjs */
/*
It needs to be an import statement because otherwise it doesn't load properly
likely because of typescript.
*/
import analytics from '@segment/analytics-react-native';
import { StartTime } from './src/performance/start-time';
import { PerformanceTracking } from './src/performance/tracking';
import { PerformanceMetrics } from './src/performance/tracking/types/PerformanceMetrics';
analytics.track('Started executing JavaScript bundle');
PerformanceTracking.logDirectly(
PerformanceMetrics.loadJSBundle,
Date.now() - StartTime.START_TIME
);
PerformanceTracking.startMeasuring(PerformanceMetrics.loadJSBundle);
PerformanceTracking.startMeasuring(PerformanceMetrics.timeToInteractive);
/*
We need to use require calls in order to stop babel from moving imports
to the top of the file above all other calls. We want Performance tracking
to start before all of the imports.
*/
require('react-native-gesture-handler');
require('./shim');
require('./src/model/config');
require('./src/App');