mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:31:08 +08:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import TerserPlugin from 'terser-webpack-plugin';
|
|
|
|
const resolveLocal = dir => path.join(__dirname, dir);
|
|
|
|
const r = resolveLocal('../../../node_modules');
|
|
const out = resolveLocal('../../core/dll');
|
|
|
|
export default ({ entry, provided = [] }) => ({
|
|
name: 'storybook-ui',
|
|
mode: 'production',
|
|
|
|
entry,
|
|
output: {
|
|
path: out,
|
|
filename: '[name]_dll.js',
|
|
library: '[name]_dll',
|
|
},
|
|
externals: provided,
|
|
|
|
resolve: {
|
|
extensions: ['.mjs', '.js', '.jsx', '.json'],
|
|
modules: [path.join(__dirname, '../../../node_modules')],
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.ProgressPlugin(),
|
|
new webpack.DllPlugin({
|
|
context: r,
|
|
path: `${out}/[name]-manifest.json`,
|
|
name: '[name]_dll',
|
|
}),
|
|
],
|
|
optimization: {
|
|
concatenateModules: true,
|
|
portableRecords: true,
|
|
moduleIds: 'hashed',
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
extractComments: {
|
|
condition: /^\**!|@preserve|@license|@cc_on/i,
|
|
filename: file => file.replace('.js', '.LICENCE'),
|
|
banner: licenseFile => `License information can be found in ${licenseFile}`,
|
|
},
|
|
}),
|
|
],
|
|
},
|
|
performance: {
|
|
hints: false,
|
|
},
|
|
});
|