Display JS and CSS bundle sizes after build (#229)

* Display JS and CSS bundle sizes after build

* Print gzipped filesize, address nits

* Use filesize for human readable output.
This commit is contained in:
Lawrence Wu
2016-07-27 16:58:15 -07:00
committed by Dan Abramov
parent a9d1106e5d
commit ca7d227ae0
2 changed files with 18 additions and 0 deletions

View File

@@ -52,7 +52,9 @@
"eslint-plugin-react": "5.2.2",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"filesize": "^3.3.0",
"fs-extra": "0.30.0",
"gzip-size": "^3.0.0",
"html-webpack-plugin": "2.22.0",
"json-loader": "0.5.4",
"opn": "4.0.2",

View File

@@ -9,6 +9,9 @@
process.env.NODE_ENV = 'production';
var fs = require('fs');
var filesize = require('filesize');
var gzipSize = require('gzip-size');
var rimrafSync = require('rimraf').sync;
var webpack = require('webpack');
var config = require('../config/webpack.config.prod');
@@ -18,6 +21,16 @@ var paths = require('../config/paths');
// if you're in it, you don't end up in Trash
rimrafSync(paths.appBuild + '/*');
function logBuildSize(assets, extension) {
for (var i = 0; i < assets.length; i++) {
var asset = assets[i];
if (asset.name.endsWith('.' + extension)) {
var fileContents = fs.readFileSync(paths.appBuild + '/' + asset.name);
console.log('Size (gzipped) of ' + asset.name + ': ' + filesize(gzipSize.sync(fileContents)));
}
}
}
webpack(config).run(function(err, stats) {
if (err) {
console.error('Failed to create a production build. Reason:');
@@ -48,6 +61,9 @@ webpack(config).run(function(err, stats) {
console.log(' pushstate-server build');
console.log(' ' + openCommand + ' http://localhost:9000');
console.log();
var assets = stats.toJson()['assets'];
logBuildSize(assets, 'js');
logBuildSize(assets, 'css');
}
console.log('The bundle is optimized and ready to be deployed to production.');
});