2018-02-28 02:19:10 -05:00
|
|
|
const path = require('path');
|
|
|
|
const glob = require('glob');
|
|
|
|
const webpack = require('webpack');
|
2018-05-18 18:38:52 -04:00
|
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
2018-02-28 02:19:10 -05:00
|
|
|
const StatsWriterPlugin = require('webpack-stats-plugin').StatsWriterPlugin;
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
2018-06-06 04:25:13 -04:00
|
|
|
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
|
2018-03-21 11:13:14 -04:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2018-02-28 02:19:10 -05:00
|
|
|
|
|
|
|
const ROOT_PATH = path.resolve(__dirname, '..');
|
2018-10-19 12:46:58 -04:00
|
|
|
const CACHE_PATH = process.env.WEBPACK_CACHE_PATH || path.join(ROOT_PATH, 'tmp/cache');
|
2018-02-28 02:19:10 -05:00
|
|
|
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
|
2018-03-21 11:13:14 -04:00
|
|
|
const IS_DEV_SERVER = process.argv.join(' ').indexOf('webpack-dev-server') !== -1;
|
2019-03-28 13:02:56 -04:00
|
|
|
const IS_EE = require('./helpers/is_ee_env');
|
2018-02-28 02:19:10 -05:00
|
|
|
const DEV_SERVER_HOST = process.env.DEV_SERVER_HOST || 'localhost';
|
|
|
|
const DEV_SERVER_PORT = parseInt(process.env.DEV_SERVER_PORT, 10) || 3808;
|
2018-05-18 19:23:28 -04:00
|
|
|
const DEV_SERVER_LIVERELOAD = IS_DEV_SERVER && process.env.DEV_SERVER_LIVERELOAD !== 'false';
|
2018-02-28 02:19:10 -05:00
|
|
|
const WEBPACK_REPORT = process.env.WEBPACK_REPORT;
|
|
|
|
const NO_COMPRESSION = process.env.NO_COMPRESSION;
|
2018-06-21 11:38:04 -04:00
|
|
|
const NO_SOURCEMAPS = process.env.NO_SOURCEMAPS;
|
2018-02-28 02:19:10 -05:00
|
|
|
|
2018-05-22 18:06:34 -04:00
|
|
|
const VUE_VERSION = require('vue/package.json').version;
|
|
|
|
const VUE_LOADER_VERSION = require('vue-loader/package.json').version;
|
|
|
|
|
2018-06-21 11:38:04 -04:00
|
|
|
const devtool = IS_PRODUCTION ? 'source-map' : 'cheap-module-eval-source-map';
|
|
|
|
|
2018-02-28 02:19:10 -05:00
|
|
|
let autoEntriesCount = 0;
|
|
|
|
let watchAutoEntries = [];
|
2018-05-06 02:19:04 -04:00
|
|
|
const defaultEntries = ['./main'];
|
2018-02-27 12:06:35 -05:00
|
|
|
|
|
|
|
function generateEntries() {
|
|
|
|
// generate automatic entry points
|
2018-02-28 02:19:10 -05:00
|
|
|
const autoEntries = {};
|
2018-04-27 14:00:00 -04:00
|
|
|
const autoEntriesMap = {};
|
2018-03-23 12:52:54 -04:00
|
|
|
const pageEntries = glob.sync('pages/**/index.js', {
|
|
|
|
cwd: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
|
|
|
});
|
|
|
|
watchAutoEntries = [path.join(ROOT_PATH, 'app/assets/javascripts/pages/')];
|
2018-02-27 12:06:35 -05:00
|
|
|
|
|
|
|
function generateAutoEntries(path, prefix = '.') {
|
|
|
|
const chunkPath = path.replace(/\/index\.js$/, '');
|
2018-02-22 08:15:15 -05:00
|
|
|
const chunkName = chunkPath.replace(/\//g, '.');
|
2018-04-27 14:00:00 -04:00
|
|
|
autoEntriesMap[chunkName] = `${prefix}/${path}`;
|
2018-02-01 18:23:03 -05:00
|
|
|
}
|
2018-02-22 08:15:15 -05:00
|
|
|
|
2018-03-23 12:52:54 -04:00
|
|
|
pageEntries.forEach(path => generateAutoEntries(path));
|
2018-01-15 12:50:26 -05:00
|
|
|
|
2019-03-13 07:58:48 -04:00
|
|
|
if (IS_EE) {
|
|
|
|
const eePageEntries = glob.sync('pages/**/index.js', {
|
|
|
|
cwd: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
|
|
|
});
|
|
|
|
eePageEntries.forEach(path => generateAutoEntries(path, 'ee'));
|
|
|
|
watchAutoEntries.push(path.join(ROOT_PATH, 'ee/app/assets/javascripts/pages/'));
|
|
|
|
}
|
|
|
|
|
2018-04-27 14:00:00 -04:00
|
|
|
const autoEntryKeys = Object.keys(autoEntriesMap);
|
|
|
|
autoEntriesCount = autoEntryKeys.length;
|
|
|
|
|
|
|
|
// import ancestor entrypoints within their children
|
|
|
|
autoEntryKeys.forEach(entry => {
|
|
|
|
const entryPaths = [autoEntriesMap[entry]];
|
|
|
|
const segments = entry.split('.');
|
|
|
|
while (segments.pop()) {
|
|
|
|
const ancestor = segments.join('.');
|
|
|
|
if (autoEntryKeys.includes(ancestor)) {
|
|
|
|
entryPaths.unshift(autoEntriesMap[ancestor]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
autoEntries[entry] = defaultEntries.concat(entryPaths);
|
|
|
|
});
|
2018-02-01 18:23:03 -05:00
|
|
|
|
2018-02-27 12:06:35 -05:00
|
|
|
const manualEntries = {
|
2018-04-27 14:00:00 -04:00
|
|
|
default: defaultEntries,
|
2018-03-23 12:52:54 -04:00
|
|
|
raven: './raven/index.js',
|
2018-02-27 12:06:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
return Object.assign(manualEntries, autoEntries);
|
|
|
|
}
|
|
|
|
|
2019-03-13 07:58:48 -04:00
|
|
|
const alias = {
|
|
|
|
'~': path.join(ROOT_PATH, 'app/assets/javascripts'),
|
|
|
|
emojis: path.join(ROOT_PATH, 'fixtures/emojis'),
|
|
|
|
empty_states: path.join(ROOT_PATH, 'app/views/shared/empty_states'),
|
|
|
|
icons: path.join(ROOT_PATH, 'app/views/shared/icons'),
|
|
|
|
images: path.join(ROOT_PATH, 'app/assets/images'),
|
|
|
|
vendor: path.join(ROOT_PATH, 'vendor/assets/javascripts'),
|
|
|
|
vue$: 'vue/dist/vue.esm.js',
|
|
|
|
spec: path.join(ROOT_PATH, 'spec/javascripts'),
|
|
|
|
|
|
|
|
// the following resolves files which are different between CE and EE
|
|
|
|
ee_else_ce: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (IS_EE) {
|
|
|
|
Object.assign(alias, {
|
|
|
|
ee: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
|
|
|
ee_empty_states: path.join(ROOT_PATH, 'ee/app/views/shared/empty_states'),
|
|
|
|
ee_icons: path.join(ROOT_PATH, 'ee/app/views/shared/icons'),
|
|
|
|
ee_images: path.join(ROOT_PATH, 'ee/app/assets/images'),
|
|
|
|
ee_spec: path.join(ROOT_PATH, 'ee/spec/javascripts'),
|
|
|
|
ee_else_ce: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
module.exports = {
|
2018-03-02 16:12:49 -05:00
|
|
|
mode: IS_PRODUCTION ? 'production' : 'development',
|
|
|
|
|
2018-02-27 12:06:35 -05:00
|
|
|
context: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
|
|
|
|
|
|
|
entry: generateEntries,
|
2016-10-18 18:46:48 -04:00
|
|
|
|
|
|
|
output: {
|
|
|
|
path: path.join(ROOT_PATH, 'public/assets/webpack'),
|
|
|
|
publicPath: '/assets/webpack/',
|
2018-05-04 12:37:37 -04:00
|
|
|
filename: IS_PRODUCTION ? '[name].[chunkhash:8].bundle.js' : '[name].bundle.js',
|
|
|
|
chunkFilename: IS_PRODUCTION ? '[name].[chunkhash:8].chunk.js' : '[name].chunk.js',
|
2018-05-03 12:16:56 -04:00
|
|
|
globalObject: 'this', // allow HMR and web workers to play nice
|
2016-10-18 18:46:48 -04:00
|
|
|
},
|
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
resolve: {
|
2018-11-27 10:10:40 -05:00
|
|
|
extensions: ['.js', '.gql', '.graphql'],
|
2019-03-13 07:58:48 -04:00
|
|
|
alias,
|
2018-03-02 16:12:49 -05:00
|
|
|
},
|
|
|
|
|
2016-10-19 15:29:43 -04:00
|
|
|
module: {
|
2018-05-18 19:23:28 -04:00
|
|
|
strictExportPresence: true,
|
2017-02-08 16:24:08 -05:00
|
|
|
rules: [
|
2018-11-27 10:10:40 -05:00
|
|
|
{
|
|
|
|
type: 'javascript/auto',
|
|
|
|
test: /\.mjs$/,
|
|
|
|
use: [],
|
|
|
|
},
|
2016-10-19 15:29:43 -04:00
|
|
|
{
|
2017-03-15 19:31:01 -04:00
|
|
|
test: /\.js$/,
|
2018-05-18 18:38:52 -04:00
|
|
|
exclude: path => /node_modules|vendor[\\/]assets/.test(path) && !/\.vue\.js/.test(path),
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'babel-loader',
|
2018-05-01 13:40:35 -04:00
|
|
|
options: {
|
2018-05-22 18:06:34 -04:00
|
|
|
cacheDirectory: path.join(CACHE_PATH, 'babel-loader'),
|
2018-05-01 13:40:35 -04:00
|
|
|
},
|
2017-02-24 13:35:25 -05:00
|
|
|
},
|
2017-03-15 18:48:48 -04:00
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'vue-loader',
|
2018-05-22 18:06:34 -04:00
|
|
|
options: {
|
|
|
|
cacheDirectory: path.join(CACHE_PATH, 'vue-loader'),
|
|
|
|
cacheIdentifier: [
|
|
|
|
process.env.NODE_ENV || 'development',
|
|
|
|
webpack.version,
|
|
|
|
VUE_VERSION,
|
|
|
|
VUE_LOADER_VERSION,
|
|
|
|
].join('|'),
|
|
|
|
},
|
2017-03-15 18:48:48 -04:00
|
|
|
},
|
2018-11-27 10:10:40 -05:00
|
|
|
{
|
|
|
|
test: /\.(graphql|gql)$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: 'graphql-tag/loader',
|
|
|
|
},
|
2017-02-24 13:35:25 -05:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'raw-loader',
|
|
|
|
},
|
2017-04-11 22:44:22 -04:00
|
|
|
{
|
2017-04-15 19:38:07 -04:00
|
|
|
test: /\.(gif|png)$/,
|
2017-04-11 22:44:22 -04:00
|
|
|
loader: 'url-loader',
|
2017-04-15 19:38:07 -04:00
|
|
|
options: { limit: 2048 },
|
2017-04-11 22:44:22 -04:00
|
|
|
},
|
2017-11-22 11:40:06 -05:00
|
|
|
{
|
|
|
|
test: /\_worker\.js$/,
|
2018-05-03 12:54:54 -04:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'worker-loader',
|
|
|
|
options: {
|
2018-05-04 12:37:37 -04:00
|
|
|
name: '[name].[hash:8].worker.js',
|
2019-02-14 06:33:35 -05:00
|
|
|
inline: IS_DEV_SERVER,
|
2018-05-03 12:54:54 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
'babel-loader',
|
|
|
|
],
|
2017-11-22 11:40:06 -05:00
|
|
|
},
|
2017-04-06 16:45:12 -04:00
|
|
|
{
|
2017-08-07 03:47:29 -04:00
|
|
|
test: /\.(worker(\.min)?\.js|pdf|bmpr)$/,
|
2017-04-03 14:39:50 -04:00
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: 'file-loader',
|
2017-08-07 03:47:29 -04:00
|
|
|
options: {
|
2018-05-04 12:37:37 -04:00
|
|
|
name: '[name].[hash:8].[ext]',
|
2018-03-23 12:52:54 -04:00
|
|
|
},
|
2017-04-03 14:39:50 -04:00
|
|
|
},
|
2017-12-20 18:55:53 -05:00
|
|
|
{
|
2018-05-18 18:38:52 -04:00
|
|
|
test: /.css$/,
|
2017-12-20 18:55:53 -05:00
|
|
|
use: [
|
2018-05-18 18:38:52 -04:00
|
|
|
'vue-style-loader',
|
2018-02-15 11:26:44 -05:00
|
|
|
{
|
2017-12-20 18:55:53 -05:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2018-05-04 12:37:37 -04:00
|
|
|
name: '[name].[hash:8].[ext]',
|
2018-03-23 12:52:54 -04:00
|
|
|
},
|
2017-12-20 18:55:53 -05:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(eot|ttf|woff|woff2)$/,
|
|
|
|
include: /node_modules\/katex\/dist\/fonts/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2018-05-04 12:37:37 -04:00
|
|
|
name: '[name].[hash:8].[ext]',
|
2018-03-23 12:52:54 -04:00
|
|
|
},
|
2017-12-20 18:55:53 -05:00
|
|
|
},
|
2017-07-18 04:30:11 -04:00
|
|
|
],
|
2018-05-18 19:23:28 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
optimization: {
|
|
|
|
runtimeChunk: 'single',
|
|
|
|
splitChunks: {
|
|
|
|
maxInitialRequests: 4,
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
common: () => ({
|
|
|
|
priority: 20,
|
|
|
|
name: 'main',
|
|
|
|
chunks: 'initial',
|
|
|
|
minChunks: autoEntriesCount * 0.9,
|
|
|
|
}),
|
|
|
|
vendors: {
|
|
|
|
priority: 10,
|
|
|
|
chunks: 'async',
|
|
|
|
test: /[\\/](node_modules|vendor[\\/]assets[\\/]javascripts)[\\/]/,
|
|
|
|
},
|
|
|
|
commons: {
|
|
|
|
chunks: 'all',
|
|
|
|
minChunks: 2,
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-10-19 15:29:43 -04:00
|
|
|
},
|
|
|
|
|
2016-10-18 18:46:48 -04:00
|
|
|
plugins: [
|
|
|
|
// manifest filename must match config.webpack.manifest_filename
|
|
|
|
// webpack-rails only needs assetsByChunkName to function properly
|
2017-08-07 00:14:42 -04:00
|
|
|
new StatsWriterPlugin({
|
|
|
|
filename: 'manifest.json',
|
|
|
|
transform: function(data, opts) {
|
2018-02-28 02:19:10 -05:00
|
|
|
const stats = opts.compiler.getStats().toJson({
|
2017-08-07 00:14:42 -04:00
|
|
|
chunkModules: false,
|
|
|
|
source: false,
|
|
|
|
chunks: false,
|
|
|
|
modules: false,
|
2018-03-23 12:52:54 -04:00
|
|
|
assets: true,
|
2017-08-07 00:14:42 -04:00
|
|
|
});
|
|
|
|
return JSON.stringify(stats, null, 2);
|
2018-03-23 12:52:54 -04:00
|
|
|
},
|
2017-01-13 11:11:35 -05:00
|
|
|
}),
|
2017-03-01 16:47:52 -05:00
|
|
|
|
2018-05-18 18:38:52 -04:00
|
|
|
// enable vue-loader to use existing loader rules for other module types
|
|
|
|
new VueLoaderPlugin(),
|
|
|
|
|
2018-06-06 04:25:13 -04:00
|
|
|
// automatically configure monaco editor web workers
|
|
|
|
new MonacoWebpackPlugin(),
|
|
|
|
|
2017-03-01 16:47:52 -05:00
|
|
|
// prevent pikaday from including moment.js
|
2017-02-14 16:45:36 -05:00
|
|
|
new webpack.IgnorePlugin(/moment/, /pikaday/),
|
2017-03-01 16:47:52 -05:00
|
|
|
|
2017-03-01 18:02:01 -05:00
|
|
|
// fix legacy jQuery plugins which depend on globals
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
$: 'jquery',
|
|
|
|
jQuery: 'jquery',
|
|
|
|
}),
|
|
|
|
|
2019-02-28 05:55:13 -05:00
|
|
|
new webpack.NormalModuleReplacementPlugin(/^ee_component\/(.*)\.vue/, function(resource) {
|
|
|
|
if (Object.keys(module.exports.resolve.alias).indexOf('ee') >= 0) {
|
|
|
|
resource.request = resource.request.replace(/^ee_component/, 'ee');
|
|
|
|
} else {
|
|
|
|
resource.request = path.join(
|
|
|
|
ROOT_PATH,
|
2019-03-08 11:59:15 -05:00
|
|
|
'app/assets/javascripts/vue_shared/components/empty_component.js',
|
2019-02-28 05:55:13 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// compression can require a lot of compute time and is disabled in CI
|
|
|
|
IS_PRODUCTION && !NO_COMPRESSION && new CompressionPlugin(),
|
2016-10-18 18:46:48 -04:00
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// WatchForChangesPlugin
|
|
|
|
// TODO: publish this as a separate plugin
|
|
|
|
IS_DEV_SERVER && {
|
|
|
|
apply(compiler) {
|
|
|
|
compiler.hooks.emit.tapAsync('WatchForChangesPlugin', (compilation, callback) => {
|
|
|
|
const missingDeps = Array.from(compilation.missingDependencies);
|
|
|
|
const nodeModulesPath = path.join(ROOT_PATH, 'node_modules');
|
|
|
|
const hasMissingNodeModules = missingDeps.some(
|
2019-03-08 11:59:15 -05:00
|
|
|
file => file.indexOf(nodeModulesPath) !== -1,
|
2018-05-18 19:23:28 -04:00
|
|
|
);
|
2018-01-15 12:50:26 -05:00
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// watch for changes to missing node_modules
|
|
|
|
if (hasMissingNodeModules) compilation.contextDependencies.add(nodeModulesPath);
|
|
|
|
|
|
|
|
// watch for changes to automatic entrypoints
|
|
|
|
watchAutoEntries.forEach(watchPath => compilation.contextDependencies.add(watchPath));
|
2016-10-19 16:56:42 -04:00
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// report our auto-generated bundle count
|
|
|
|
console.log(
|
2019-03-08 11:59:15 -05:00
|
|
|
`${autoEntriesCount} entries from '/pages' automatically added to webpack output.`,
|
2018-05-18 19:23:28 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// enable HMR only in webpack-dev-server
|
|
|
|
DEV_SERVER_LIVERELOAD && new webpack.HotModuleReplacementPlugin(),
|
|
|
|
|
|
|
|
// optionally generate webpack bundle analysis
|
|
|
|
WEBPACK_REPORT &&
|
|
|
|
new BundleAnalyzerPlugin({
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
|
|
|
openAnalyzer: false,
|
|
|
|
reportFilename: path.join(ROOT_PATH, 'webpack-report/index.html'),
|
|
|
|
statsFilename: path.join(ROOT_PATH, 'webpack-report/stats.json'),
|
|
|
|
}),
|
2019-03-13 17:54:52 -04:00
|
|
|
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env.EE': JSON.stringify(IS_EE),
|
|
|
|
}),
|
2018-05-18 19:23:28 -04:00
|
|
|
].filter(Boolean),
|
|
|
|
|
|
|
|
devServer: {
|
2017-04-12 15:05:23 -04:00
|
|
|
host: DEV_SERVER_HOST,
|
2016-10-18 18:46:48 -04:00
|
|
|
port: DEV_SERVER_PORT,
|
2017-07-07 14:00:31 -04:00
|
|
|
disableHostCheck: true,
|
2018-05-24 09:11:59 -04:00
|
|
|
headers: {
|
|
|
|
'Access-Control-Allow-Origin': '*',
|
|
|
|
'Access-Control-Allow-Headers': '*',
|
|
|
|
},
|
2017-02-09 21:16:38 -05:00
|
|
|
stats: 'errors-only',
|
2017-06-15 03:46:15 -04:00
|
|
|
hot: DEV_SERVER_LIVERELOAD,
|
2018-03-23 12:52:54 -04:00
|
|
|
inline: DEV_SERVER_LIVERELOAD,
|
2018-05-18 19:23:28 -04:00
|
|
|
},
|
2016-10-18 18:46:48 -04:00
|
|
|
|
2018-06-21 11:38:04 -04:00
|
|
|
devtool: NO_SOURCEMAPS ? false : devtool,
|
2017-02-20 16:42:51 -05:00
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// sqljs requires fs
|
|
|
|
node: { fs: 'empty' },
|
|
|
|
};
|