# af-webpack Unique webpack wrapper for ant financial. ## Why af-webpack ? TODO ## CLIs based on af-webpack * [umi](https://github.com/umijs/umi) * [roadhog@2](https://github.com/sorrycc/roadhog/tree/2.0) ## Configuration See [./Configuration.md](./Configuration.md). ## API ### af-webpack/getConfig Get webpack config with opts. ```js const webpackConfig = getConfig(opts); // use webpackConfig to dev or build ``` ### af-webpack/dev Run webpack-dev-server more gracefully with [react-dev-utils](https://github.com/facebookincubator/create-react-app/tree/master/packages/react-dev-utils). ```js dev({ webpackConfig, extraMiddlewares, beforeServer, afterServer, onCompileDone, onCompileInvalid, proxy, }); ``` webpackConfig is required, other optional. Options: * `webpackConfig`: The webpack config * `extraMiddlewares`: Extra middlewares for webpack-dev-server, based on express * `beforeServer`: The function to execute before dev server is started * `afterServer`: The function to execute after dev server is started * `onCompileDone` * `onCompileInvalid` * `proxy`: The proxy config which will pass through to webpack-dev-server ### af-webpack/build Run webpack compilation. ```js build({ webpackConfig, success, }); ``` webpackConfig is required, other optional. Options: * `webpackConfig`: the webpack config * `success`: the function to execute after build is done successfully ### af-webpack/react-dev-utils The APIs related to react-dev-utils. * webpackHotDevClientPath锛歵he real path of webpackHotDevClient ### af-webpack/webpack The webpack, useful to register extra webpack plugins. ### af-webpack/registerBabel Register babel for extra files. ## LICENSE MIT