36 lines
1.0 KiB
JavaScript
Raw Normal View History

2017-01-17 13:40:59 +01:00
/**
* WEBPACK DLL GENERATOR
*
* This profile is used to cache webpack's module
* contexts for external library and framework type
* dependencies which will usually not change often enough
* to warrant building them from scratch every time we use
* the webpack process.
*/
const { join } = require('path');
2017-01-17 13:40:59 +01:00
const defaults = require('lodash/defaultsDeep');
const webpack = require('webpack');
2017-01-17 13:40:59 +01:00
const dllPlugin = require('../config').dllPlugin;
const pkg = require(join(process.cwd(), 'package.json'));
2017-01-17 13:40:59 +01:00
if (!pkg.dllPlugin) { process.exit(0); }
const dllConfig = defaults(pkg.dllPlugin, dllPlugin.defaults);
const outputPath = join(process.cwd(), dllConfig.path);
module.exports = {
context: process.cwd(),
entry: dllConfig.dlls ? dllConfig.dlls : dllPlugin.entry(pkg),
devtool: 'eval',
output: {
filename: '[name].dll.js',
path: outputPath,
library: '[name]',
},
plugins: [
new webpack.DllPlugin({ name: '[name]', path: join(outputPath, '[name].json') }), // eslint-disable-line no-new
],
};