Rewrite benchmarks app

Reorganizes and rewrites the benchmarks. Each implementation is now
self-contained and the benchmarks can be run using a GUI. The benchmarks
themselves have been changed so that individual tests render over a
shorter time frame and more samples are taken.
This commit is contained in:
Nicolas Gallagher
2018-01-17 16:57:16 -08:00
parent 6e6fd4b5d0
commit ed0cafac7c
74 changed files with 1632 additions and 904 deletions
+3 -7
View File
@@ -30,7 +30,7 @@ module.exports = {
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
cacheDirectory: false,
presets: babelPreset,
plugins: ['react-native-web']
}
@@ -49,14 +49,10 @@ module.exports = {
new webpack.optimize.UglifyJsPlugin({
compress: {
dead_code: true,
drop_console: true,
screw_ie8: true,
warnings: false
}
})
],
resolve: {
alias: {
'react-native': 'react-native-web'
}
}
]
};