UNPKG

dtian88-react-digraph

Version:
17 lines (12 loc) 366 B
import webpack from 'webpack'; import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'; import config from '../webpack.config'; config.plugins.push(new BundleAnalyzerPlugin()); process.env.NODE_ENV = 'development'; const compiler = webpack(config); compiler.run((error, stats) => { if (error) { throw new Error(error); } console.log(stats); });