@krakenjs/webpack-config-grumbler
v8.1.4
Published
Webpack config for grumbler modules
Keywords
Readme
@krakenjs/webpack-config-grumbler
Installation
npm install -D @krakenjs/webpack-config-grumblerUsage
Create a
webpack.config.jsfile at the root of your project.Add the following contents to your
webpack.config.jsfile:import { getWebpackConfig } from "@krakenjs/webpack-config-grumbler"; const FILE_NAME = "mylibrary"; const MODULE_NAME = "mylibrary"; export const WEBPACK_CONFIG = getWebpackConfig({ filename: `${FILE_NAME}.min.js`, modulename: MODULE_NAME, minify: true, }); export default [WEBPACK_CONFIG];
