@krakenjs/webpack-config-grumbler
v8.1.3
Published
Webpack config for grumbler modules
Downloads
1,548
Keywords
Readme
@krakenjs/webpack-config-grumbler
Installation
npm install -D @krakenjs/webpack-config-grumbler
Usage
Create a
webpack.config.js
file at the root of your project.Add the following contents to your
webpack.config.js
file: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];