mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
* 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
22 lines
514 B
JavaScript
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);
|
|
},
|
|
};
|
|
};
|