2017-05-02 20:04:16 -04:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 11:31:47 -04:00
|
|
|
const webpack = require('webpack');
|
2017-11-30 22:29:47 -05:00
|
|
|
const { basename, join, resolve } = require('path');
|
2017-05-20 11:31:47 -04:00
|
|
|
const { sync } = require('glob');
|
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
const ManifestPlugin = require('webpack-manifest-plugin');
|
|
|
|
const extname = require('path-complete-extname');
|
2017-12-04 02:26:40 -05:00
|
|
|
const { env, settings, core, flavours, output, loadersDir } = require('./configuration.js');
|
2017-12-07 22:07:47 -05:00
|
|
|
const localePacks = require('./generateLocalePacks');
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
function reducePacks (data, into = {}) {
|
|
|
|
if (!data.pack) {
|
|
|
|
return into;
|
|
|
|
}
|
|
|
|
Object.keys(data.pack).reduce((map, entry) => {
|
|
|
|
const pack = data.pack[entry];
|
|
|
|
if (!pack) {
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
const packFile = typeof pack === 'string' ? pack : pack.filename;
|
|
|
|
if (packFile) {
|
2017-12-04 02:26:40 -05:00
|
|
|
map[data.name ? `flavours/${data.name}/${entry}` : `core/${entry}`] = resolve(data.pack_directory, packFile);
|
2017-11-21 01:13:37 -05:00
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}, into);
|
2017-11-30 22:29:47 -05:00
|
|
|
if (data.name) {
|
|
|
|
Object.keys(data.skin).reduce((map, entry) => {
|
|
|
|
const skin = data.skin[entry];
|
|
|
|
const skinName = entry;
|
|
|
|
if (!skin) {
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
Object.keys(skin).reduce((map, entry) => {
|
|
|
|
const packFile = skin[entry];
|
|
|
|
if (!packFile) {
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
map[`skins/${data.name}/${skinName}/${entry}`] = resolve(packFile);
|
|
|
|
return map;
|
|
|
|
}, into);
|
|
|
|
return map;
|
|
|
|
}, into);
|
|
|
|
}
|
2017-11-21 01:13:37 -05:00
|
|
|
return into;
|
|
|
|
}
|
2017-06-01 14:56:32 -04:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
module.exports = {
|
2017-09-19 10:36:23 -04:00
|
|
|
entry: Object.assign(
|
2017-11-21 01:13:37 -05:00
|
|
|
{ locales: resolve('app', 'javascript', 'locales') },
|
2017-12-07 22:07:47 -05:00
|
|
|
localePacks,
|
2017-11-21 01:13:37 -05:00
|
|
|
reducePacks(core),
|
2017-12-04 02:26:40 -05:00
|
|
|
Object.keys(flavours).reduce((map, entry) => reducePacks(flavours[entry], map), {})
|
2017-05-02 20:04:16 -04:00
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-07-27 23:14:01 -04:00
|
|
|
chunkFilename: '[name].js',
|
2017-06-17 20:57:09 -04:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
2017-05-20 11:31:47 -04:00
|
|
|
rules: sync(join(loadersDir, '*.js')).map(loader => require(loader)),
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
2017-10-07 20:55:58 -04:00
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/^history\//, (resource) => {
|
|
|
|
// temporary fix for https://github.com/ReactTraining/react-router/issues/5576
|
|
|
|
// to reduce bundle size
|
|
|
|
resource.request = resource.request.replace(/^history/, 'history/es');
|
|
|
|
}
|
|
|
|
),
|
2017-07-18 14:21:04 -04:00
|
|
|
new ExtractTextPlugin({
|
2017-11-16 02:21:16 -05:00
|
|
|
filename: env.NODE_ENV === 'production' ? '[name]-[contenthash].css' : '[name].css',
|
2017-07-18 14:21:04 -04:00
|
|
|
allChunks: true,
|
|
|
|
}),
|
2017-06-17 20:57:09 -04:00
|
|
|
new ManifestPlugin({
|
|
|
|
publicPath: output.publicPath,
|
|
|
|
writeToFileEmit: true,
|
|
|
|
}),
|
2017-05-02 20:04:16 -04:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-11-21 01:13:37 -05:00
|
|
|
name: 'locales',
|
2017-07-30 13:28:21 -04:00
|
|
|
minChunks: Infinity, // It doesn't make sense to use common chunks with multiple frontend support.
|
2017-05-20 11:31:47 -04:00
|
|
|
}),
|
2017-05-02 20:04:16 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-17 20:57:09 -04:00
|
|
|
extensions: settings.extensions,
|
2017-05-02 20:04:16 -04:00
|
|
|
modules: [
|
2017-06-17 20:57:09 -04:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 11:31:47 -04:00
|
|
|
],
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-17 20:57:09 -04:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 05:02:19 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 11:31:47 -04:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|