Skip to content

Commit

Permalink
Display JS and CSS bundle sizes after build (#229)
Browse files Browse the repository at this point in the history
* Display JS and CSS bundle sizes after build

* Print gzipped filesize, address nits

* Use filesize for human readable output.
  • Loading branch information
lvwrence authored and gaearon committed Jul 27, 2016
1 parent a9d1106 commit ca7d227
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
16 changes: 16 additions & 0 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -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:');
Expand Down Expand Up @@ -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.');
});

0 comments on commit ca7d227

Please sign in to comment.