2017-05-03 02:04:16 +02:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-06-01 20:56:32 +02:00
|
|
|
const { existsSync } = require('fs');
|
2017-05-20 17:31:47 +02:00
|
|
|
const webpack = require('webpack');
|
2017-05-30 15:30:59 +02:00
|
|
|
const { basename, dirname, join, relative, resolve, sep } = require('path');
|
2017-05-20 17:31:47 +02: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-06-18 02:57:09 +02:00
|
|
|
const { env, settings, output, loadersDir } = require('./configuration.js');
|
2017-05-22 15:06:06 +02:00
|
|
|
const localePackPaths = require('./generateLocalePacks');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
const extensionGlob = `**/*{${settings.extensions.join(',')}}*`;
|
|
|
|
const entryPath = join(settings.source_path, settings.source_entry_path);
|
|
|
|
const packPaths = sync(join(entryPath, extensionGlob));
|
|
|
|
const entryPacks = [...packPaths, ...localePackPaths].filter(path => path !== join(entryPath, 'custom.js'));
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
const customApplicationStyle = resolve(join(settings.source_path, 'styles/custom.scss'));
|
|
|
|
const originalApplicationStyle = resolve(join(settings.source_path, 'styles/application.scss'));
|
2017-06-01 20:56:32 +02:00
|
|
|
|
2017-05-03 02:04:16 +02:00
|
|
|
module.exports = {
|
2017-05-22 15:06:06 +02:00
|
|
|
entry: entryPacks.reduce(
|
2017-05-03 02:04:16 +02:00
|
|
|
(map, entry) => {
|
2017-05-20 17:31:47 +02:00
|
|
|
const localMap = map;
|
2017-06-18 02:57:09 +02:00
|
|
|
let namespace = relative(join(entryPath), dirname(entry));
|
2017-05-30 15:30:59 +02:00
|
|
|
if (namespace === join('..', '..', '..', 'tmp', 'packs')) {
|
2017-05-22 15:06:06 +02:00
|
|
|
namespace = ''; // generated by generateLocalePacks.js
|
|
|
|
}
|
2017-05-20 17:31:47 +02:00
|
|
|
localMap[join(namespace, basename(entry, extname(entry)))] = resolve(entry);
|
|
|
|
return localMap;
|
2017-05-03 02:04:16 +02:00
|
|
|
}, {}
|
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-07-28 05:14:01 +02:00
|
|
|
chunkFilename: '[name].js',
|
2017-06-18 02:57:09 +02:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-03 02:04:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
2017-05-20 17:31:47 +02:00
|
|
|
rules: sync(join(loadersDir, '*.js')).map(loader => require(loader)),
|
2017-05-03 02:04:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
|
|
|
new ExtractTextPlugin(env.NODE_ENV === 'production' ? '[name]-[hash].css' : '[name].css'),
|
2017-06-18 02:57:09 +02:00
|
|
|
new ManifestPlugin({
|
|
|
|
publicPath: output.publicPath,
|
|
|
|
writeToFileEmit: true,
|
|
|
|
}),
|
2017-05-03 02:04:16 +02:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-05-15 20:20:10 +02:00
|
|
|
name: 'common',
|
2017-05-22 15:06:06 +02:00
|
|
|
minChunks: (module, count) => {
|
2017-05-30 15:30:59 +02:00
|
|
|
const reactIntlPathRegexp = new RegExp(`node_modules\\${sep}react-intl`);
|
2017-06-01 20:56:32 +02:00
|
|
|
|
2017-05-30 15:30:59 +02:00
|
|
|
if (module.resource && reactIntlPathRegexp.test(module.resource)) {
|
2017-05-22 15:06:06 +02:00
|
|
|
// skip react-intl because it's useless to put in the common chunk,
|
|
|
|
// e.g. because "shared" modules between zh-TW and zh-CN will never
|
|
|
|
// be loaded together
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-27 16:55:09 +02:00
|
|
|
|
2017-05-22 15:06:06 +02:00
|
|
|
return count >= 2;
|
|
|
|
},
|
2017-05-20 17:31:47 +02:00
|
|
|
}),
|
2017-05-03 02:04:16 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-01 20:56:32 +02:00
|
|
|
alias: {
|
|
|
|
'mastodon-application-style': existsSync(customApplicationStyle) ?
|
|
|
|
customApplicationStyle : originalApplicationStyle,
|
|
|
|
},
|
2017-06-18 02:57:09 +02:00
|
|
|
extensions: settings.extensions,
|
2017-05-03 02:04:16 +02:00
|
|
|
modules: [
|
2017-06-18 02:57:09 +02:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 17:31:47 +02:00
|
|
|
],
|
2017-05-03 02:04:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-18 02:57:09 +02:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 11:02:19 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 17:31:47 +02:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|