react/scripts/rollup/plugins/sizes-plugin.js
Dan Abramov 72542030cf
Use Java version of Google Closure Compiler (#12800)
* makes closure compiler threaded

* Dans PR with a closure compiler java version

* Remove unused dep

* Pin GCC

* Prettier

* Nit rename

* Fix error handling

* Name plugins consistently

* Fix lint

* Maybe this works?

* or this

* AppVeyor

* Fix lint
2018-05-14 17:49:41 +01:00

22 lines
514 B
JavaScript

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
const gzip = require('gzip-size');
module.exports = function sizes(options) {
return {
name: 'scripts/rollup/plugins/sizes-plugin',
ongenerate(bundle, obj) {
const size = Buffer.byteLength(obj.code);
const gzipSize = gzip.sync(obj.code);
options.getSize(size, gzipSize);
},
};
};