2019-12-17 04:07:48 -05:00
|
|
|
const fs = require('fs');
|
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');
|
2020-07-07 11:08:49 -04:00
|
|
|
const MonacoWebpackPlugin = require('./plugins/monaco_webpack');
|
2018-03-21 11:13:14 -04:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2019-07-28 01:53:24 -04:00
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2019-12-17 04:07:48 -05:00
|
|
|
const vendorDllHash = require('./helpers/vendor_dll_hash');
|
2018-02-28 02:19:10 -05:00
|
|
|
|
|
|
|
const ROOT_PATH = path.resolve(__dirname, '..');
|
2019-12-17 04:07:48 -05:00
|
|
|
const VENDOR_DLL = process.env.WEBPACK_VENDOR_DLL && process.env.WEBPACK_VENDOR_DLL !== 'false';
|
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';
|
2019-09-26 20:06:23 -04:00
|
|
|
const IS_DEV_SERVER = process.env.WEBPACK_DEV_SERVER === 'true';
|
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;
|
2020-11-17 04:09:23 -05:00
|
|
|
const DEV_SERVER_PUBLIC_ADDR = process.env.DEV_SERVER_PUBLIC_ADDR;
|
2020-12-02 13:09:35 -05:00
|
|
|
const DEV_SERVER_ALLOWED_HOSTS =
|
|
|
|
process.env.DEV_SERVER_ALLOWED_HOSTS && process.env.DEV_SERVER_ALLOWED_HOSTS.split(',');
|
2020-10-07 02:09:03 -04:00
|
|
|
const DEV_SERVER_HTTPS = process.env.DEV_SERVER_HTTPS && process.env.DEV_SERVER_HTTPS !== 'false';
|
2018-05-18 19:23:28 -04:00
|
|
|
const DEV_SERVER_LIVERELOAD = IS_DEV_SERVER && process.env.DEV_SERVER_LIVERELOAD !== 'false';
|
2020-06-09 17:08:21 -04:00
|
|
|
const WEBPACK_REPORT = process.env.WEBPACK_REPORT && process.env.WEBPACK_REPORT !== 'false';
|
|
|
|
const WEBPACK_MEMORY_TEST =
|
|
|
|
process.env.WEBPACK_MEMORY_TEST && process.env.WEBPACK_MEMORY_TEST !== 'false';
|
|
|
|
const NO_COMPRESSION = process.env.NO_COMPRESSION && process.env.NO_COMPRESSION !== 'false';
|
|
|
|
const NO_SOURCEMAPS = process.env.NO_SOURCEMAPS && process.env.NO_SOURCEMAPS !== 'false';
|
2018-02-28 02:19:10 -05:00
|
|
|
|
2020-12-07 19:09:45 -05:00
|
|
|
const WEBPACK_OUTPUT_PATH = path.join(ROOT_PATH, 'public/assets/webpack');
|
|
|
|
const WEBPACK_PUBLIC_PATH = '/assets/webpack/';
|
|
|
|
const SOURCEGRAPH_PACKAGE = '@sourcegraph/code-host-integration';
|
|
|
|
|
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;
|
2019-12-04 10:11:23 -05:00
|
|
|
const WEBPACK_VERSION = require('webpack/package.json').version;
|
2020-12-07 19:09:45 -05:00
|
|
|
const SOURCEGRAPH_VERSION = require(path.join(SOURCEGRAPH_PACKAGE, 'package.json')).version;
|
|
|
|
|
|
|
|
const SOURCEGRAPH_PATH = path.join('sourcegraph', SOURCEGRAPH_VERSION, '/');
|
|
|
|
const SOURCEGRAPH_OUTPUT_PATH = path.join(WEBPACK_OUTPUT_PATH, SOURCEGRAPH_PATH);
|
|
|
|
const SOURCEGRAPH_PUBLIC_PATH = path.join(WEBPACK_PUBLIC_PATH, SOURCEGRAPH_PATH);
|
2018-05-22 18:06:34 -04:00
|
|
|
|
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
|
|
|
|
2020-12-23 16:10:24 -05: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'),
|
|
|
|
});
|
2020-12-23 16:10:24 -05:00
|
|
|
eePageEntries.forEach((path) => generateAutoEntries(path, 'ee'));
|
2019-03-13 07:58:48 -04:00
|
|
|
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
|
2020-12-23 16:10:24 -05:00
|
|
|
autoEntryKeys.forEach((entry) => {
|
2018-04-27 14:00:00 -04:00
|
|
|
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,
|
2020-10-13 02:09:09 -04:00
|
|
|
// sentry: './sentry/index.js', Temporarily commented out to investigate performance: https://gitlab.com/gitlab-org/gitlab/-/issues/251179
|
2020-09-09 17:08:33 -04:00
|
|
|
performance_bar: './performance_bar/index.js',
|
2020-07-31 14:09:37 -04:00
|
|
|
chrome_84_icon_fix: './lib/chrome_84_icon_fix.js',
|
2020-11-05 13:08:48 -05:00
|
|
|
jira_connect_app: './jira_connect/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'),
|
2020-01-21 19:08:47 -05:00
|
|
|
jest: path.join(ROOT_PATH, 'spec/frontend'),
|
2020-10-13 08:08:41 -04:00
|
|
|
shared_queries: path.join(ROOT_PATH, 'app/graphql/queries'),
|
2019-03-13 07:58:48 -04:00
|
|
|
|
|
|
|
// the following resolves files which are different between CE and EE
|
|
|
|
ee_else_ce: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
2019-07-29 16:25:59 -04:00
|
|
|
|
|
|
|
// override loader path for icons.svg so we do not duplicate this asset
|
|
|
|
'@gitlab/svgs/dist/icons.svg': path.join(
|
|
|
|
ROOT_PATH,
|
|
|
|
'app/assets/javascripts/lib/utils/icons_path.js',
|
|
|
|
),
|
2019-03-13 07:58:48 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if (IS_EE) {
|
|
|
|
Object.assign(alias, {
|
|
|
|
ee: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
2019-12-03 13:06:49 -05:00
|
|
|
ee_component: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
2019-03-13 07:58:48 -04:00
|
|
|
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'),
|
2020-01-21 19:08:47 -05:00
|
|
|
ee_jest: path.join(ROOT_PATH, 'ee/spec/frontend'),
|
2019-03-13 07:58:48 -04:00
|
|
|
ee_else_ce: path.join(ROOT_PATH, 'ee/app/assets/javascripts'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-08-06 17:10:15 -04:00
|
|
|
if (!IS_PRODUCTION) {
|
|
|
|
const fixtureDir = IS_EE ? 'fixtures-ee' : 'fixtures';
|
|
|
|
|
|
|
|
Object.assign(alias, {
|
|
|
|
test_fixtures: path.join(ROOT_PATH, `tmp/tests/frontend/${fixtureDir}`),
|
|
|
|
test_helpers: path.join(ROOT_PATH, 'spec/frontend_integration/test_helpers'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-12-17 04:07:48 -05:00
|
|
|
let dll;
|
|
|
|
|
|
|
|
if (VENDOR_DLL && !IS_PRODUCTION) {
|
|
|
|
const dllHash = vendorDllHash();
|
|
|
|
const dllCachePath = path.join(ROOT_PATH, `tmp/cache/webpack-dlls/${dllHash}`);
|
2020-02-18 16:09:11 -05:00
|
|
|
dll = {
|
|
|
|
manifestPath: path.join(dllCachePath, 'vendor.dll.manifest.json'),
|
|
|
|
cacheFrom: dllCachePath,
|
2020-12-07 19:09:45 -05:00
|
|
|
cacheTo: path.join(WEBPACK_OUTPUT_PATH, `dll.${dllHash}/`),
|
2020-02-18 16:09:11 -05:00
|
|
|
publicPath: `dll.${dllHash}/vendor.dll.bundle.js`,
|
|
|
|
exists: null,
|
|
|
|
};
|
2019-12-17 04:07:48 -05:00
|
|
|
}
|
|
|
|
|
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: {
|
2020-12-07 19:09:45 -05:00
|
|
|
path: WEBPACK_OUTPUT_PATH,
|
|
|
|
publicPath: WEBPACK_PUBLIC_PATH,
|
2020-05-15 20:08:12 -04:00
|
|
|
filename: IS_PRODUCTION ? '[name].[contenthash:8].bundle.js' : '[name].bundle.js',
|
|
|
|
chunkFilename: IS_PRODUCTION ? '[name].[contenthash: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$/,
|
2020-12-23 16:10:24 -05:00
|
|
|
exclude: (path) =>
|
2020-03-09 17:07:57 -04:00
|
|
|
/node_modules\/(?!tributejs)|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',
|
|
|
|
},
|
2019-07-29 16:25:35 -04:00
|
|
|
{
|
|
|
|
test: /icons\.svg$/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2020-05-15 20:08:12 -04:00
|
|
|
name: '[name].[contenthash:8].[ext]',
|
2019-07-29 16:25:35 -04:00
|
|
|
},
|
|
|
|
},
|
2017-02-24 13:35:25 -05:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
2019-07-29 16:25:35 -04:00
|
|
|
exclude: /icons\.svg$/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'raw-loader',
|
|
|
|
},
|
2017-04-11 22:44:22 -04:00
|
|
|
{
|
2019-12-18 07:07:48 -05:00
|
|
|
test: /\.(gif|png|mp4)$/,
|
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
|
|
|
{
|
2019-12-05 13:07:51 -05:00
|
|
|
test: /_worker\.js$/,
|
2018-05-03 12:54:54 -04:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'worker-loader',
|
|
|
|
options: {
|
2020-05-15 20:08:12 -04:00
|
|
|
name: '[name].[contenthash: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: {
|
2020-05-15 20:08:12 -04:00
|
|
|
name: '[name].[contenthash: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: {
|
2020-05-19 05:08:12 -04:00
|
|
|
modules: 'global',
|
|
|
|
localIdentName: '[name].[contenthash:8].[ext]',
|
2018-03-23 12:52:54 -04:00
|
|
|
},
|
2017-12-20 18:55:53 -05:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(eot|ttf|woff|woff2)$/,
|
2020-07-07 11:08:49 -04:00
|
|
|
include: /node_modules\/(katex\/dist\/fonts|monaco-editor)/,
|
2017-12-20 18:55:53 -05:00
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2020-05-15 20:08:12 -04:00
|
|
|
name: '[name].[contenthash:8].[ext]',
|
2020-06-02 02:08:01 -04:00
|
|
|
esModule: false,
|
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: {
|
2020-05-15 20:08:12 -04:00
|
|
|
// Replace 'hashed' with 'deterministic' in webpack 5
|
|
|
|
moduleIds: 'hashed',
|
2018-05-18 19:23:28 -04:00
|
|
|
runtimeChunk: 'single',
|
|
|
|
splitChunks: {
|
2020-06-03 14:08:28 -04:00
|
|
|
maxInitialRequests: 20,
|
2020-08-19 20:10:11 -04:00
|
|
|
// In order to prevent firewalls tripping up: https://gitlab.com/gitlab-org/gitlab/-/issues/22648
|
|
|
|
automaticNameDelimiter: '-',
|
2018-05-18 19:23:28 -04:00
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
common: () => ({
|
|
|
|
priority: 20,
|
|
|
|
name: 'main',
|
|
|
|
chunks: 'initial',
|
|
|
|
minChunks: autoEntriesCount * 0.9,
|
|
|
|
}),
|
2020-09-30 14:09:52 -04:00
|
|
|
graphql: {
|
|
|
|
priority: 16,
|
|
|
|
name: 'graphql',
|
|
|
|
chunks: 'all',
|
|
|
|
test: /[\\/]node_modules[\\/][^\\/]*(immer|apollo|graphql|zen-observable)[^\\/]*[\\/]/,
|
|
|
|
minChunks: 2,
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
2020-04-23 17:09:31 -04:00
|
|
|
monaco: {
|
|
|
|
priority: 15,
|
|
|
|
name: 'monaco',
|
2020-08-18 20:10:34 -04:00
|
|
|
chunks: 'all',
|
2020-04-23 17:09:31 -04:00
|
|
|
test: /[\\/]node_modules[\\/]monaco-editor[\\/]/,
|
|
|
|
minChunks: 2,
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
2020-05-14 20:08:06 -04:00
|
|
|
echarts: {
|
|
|
|
priority: 14,
|
|
|
|
name: 'echarts',
|
|
|
|
chunks: 'all',
|
|
|
|
test: /[\\/]node_modules[\\/](echarts|zrender)[\\/]/,
|
|
|
|
minChunks: 2,
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
|
|
|
security_reports: {
|
|
|
|
priority: 13,
|
|
|
|
name: 'security_reports',
|
|
|
|
chunks: 'initial',
|
|
|
|
test: /[\\/](vue_shared[\\/](security_reports|license_compliance)|security_dashboard)[\\/]/,
|
|
|
|
minChunks: 2,
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
2018-05-18 19:23:28 -04:00
|
|
|
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',
|
2020-12-23 07:10:26 -05:00
|
|
|
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,
|
2020-08-26 17:10:19 -04:00
|
|
|
errors: !IS_PRODUCTION,
|
|
|
|
warnings: !IS_PRODUCTION,
|
2017-08-07 00:14:42 -04:00
|
|
|
});
|
2019-12-17 04:07:48 -05:00
|
|
|
|
|
|
|
// tell our rails helper where to find the DLL files
|
|
|
|
if (dll) {
|
|
|
|
stats.dllAssets = dll.publicPath;
|
|
|
|
}
|
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 18:02:01 -05:00
|
|
|
// fix legacy jQuery plugins which depend on globals
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
$: 'jquery',
|
|
|
|
jQuery: 'jquery',
|
2020-12-01 19:09:45 -05:00
|
|
|
Popper: ['popper.js', 'default'],
|
|
|
|
Alert: 'exports-loader?Alert!bootstrap/js/dist/alert',
|
|
|
|
Button: 'exports-loader?Button!bootstrap/js/dist/button',
|
|
|
|
Carousel: 'exports-loader?Carousel!bootstrap/js/dist/carousel',
|
|
|
|
Collapse: 'exports-loader?Collapse!bootstrap/js/dist/collapse',
|
|
|
|
Dropdown: 'exports-loader?Dropdown!bootstrap/js/dist/dropdown',
|
|
|
|
Modal: 'exports-loader?Modal!bootstrap/js/dist/modal',
|
|
|
|
Popover: 'exports-loader?Popover!bootstrap/js/dist/popover',
|
|
|
|
Scrollspy: 'exports-loader?Scrollspy!bootstrap/js/dist/scrollspy',
|
|
|
|
Tab: 'exports-loader?Tab!bootstrap/js/dist/tab',
|
|
|
|
Tooltip: 'exports-loader?Tooltip!bootstrap/js/dist/tooltip',
|
|
|
|
Util: 'exports-loader?Util!bootstrap/js/dist/util',
|
2017-03-01 18:02:01 -05:00
|
|
|
}),
|
|
|
|
|
2020-02-18 16:09:11 -05:00
|
|
|
// if DLLs are enabled, detect whether the DLL exists and create it automatically if necessary
|
|
|
|
dll && {
|
|
|
|
apply(compiler) {
|
|
|
|
compiler.hooks.beforeCompile.tapAsync('DllAutoCompilePlugin', (params, callback) => {
|
|
|
|
if (dll.exists) {
|
|
|
|
callback();
|
|
|
|
} else if (fs.existsSync(dll.manifestPath)) {
|
|
|
|
console.log(`Using vendor DLL found at: ${dll.cacheFrom}`);
|
|
|
|
dll.exists = true;
|
|
|
|
callback();
|
|
|
|
} else {
|
|
|
|
console.log(
|
|
|
|
`Warning: No vendor DLL found at: ${dll.cacheFrom}. Compiling DLL automatically.`,
|
|
|
|
);
|
|
|
|
|
|
|
|
const dllConfig = require('./webpack.vendor.config.js');
|
|
|
|
const dllCompiler = webpack(dllConfig);
|
|
|
|
|
|
|
|
dllCompiler.run((err, stats) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
const info = stats.toJson();
|
|
|
|
|
|
|
|
if (stats.hasErrors()) {
|
|
|
|
console.error(info.errors.join('\n\n'));
|
|
|
|
return callback('DLL not compiled successfully.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stats.hasWarnings()) {
|
|
|
|
console.warn(info.warnings.join('\n\n'));
|
|
|
|
console.warn('DLL compiled with warnings.');
|
|
|
|
} else {
|
|
|
|
console.log('DLL compiled successfully.');
|
|
|
|
}
|
|
|
|
|
|
|
|
dll.exists = true;
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-12-17 04:07:48 -05:00
|
|
|
// reference our compiled DLL modules
|
|
|
|
dll &&
|
|
|
|
new webpack.DllReferencePlugin({
|
|
|
|
context: ROOT_PATH,
|
|
|
|
manifest: dll.manifestPath,
|
|
|
|
}),
|
|
|
|
|
|
|
|
dll &&
|
|
|
|
new CopyWebpackPlugin([
|
|
|
|
{
|
|
|
|
from: dll.cacheFrom,
|
|
|
|
to: dll.cacheTo,
|
|
|
|
},
|
|
|
|
]),
|
|
|
|
|
2019-12-03 13:06:49 -05:00
|
|
|
!IS_EE &&
|
2020-12-23 16:10:24 -05:00
|
|
|
new webpack.NormalModuleReplacementPlugin(/^ee_component\/(.*)\.vue/, (resource) => {
|
2019-02-28 05:55:13 -05:00
|
|
|
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
|
|
|
);
|
2019-12-03 13:06:49 -05:00
|
|
|
}),
|
2019-02-28 05:55:13 -05:00
|
|
|
|
2019-07-28 01:53:24 -04:00
|
|
|
new CopyWebpackPlugin([
|
|
|
|
{
|
|
|
|
from: path.join(ROOT_PATH, 'node_modules/pdfjs-dist/cmaps/'),
|
2020-12-07 19:09:45 -05:00
|
|
|
to: path.join(WEBPACK_OUTPUT_PATH, 'cmaps/'),
|
2019-07-28 01:53:24 -04:00
|
|
|
},
|
2019-11-15 13:06:24 -05:00
|
|
|
{
|
2020-12-07 19:09:45 -05:00
|
|
|
from: path.join(ROOT_PATH, 'node_modules', SOURCEGRAPH_PACKAGE, '/'),
|
|
|
|
to: SOURCEGRAPH_OUTPUT_PATH,
|
2019-11-15 13:06:24 -05:00
|
|
|
ignore: ['package.json'],
|
|
|
|
},
|
2019-08-23 15:57:21 -04:00
|
|
|
{
|
|
|
|
from: path.join(
|
|
|
|
ROOT_PATH,
|
|
|
|
'node_modules/@gitlab/visual-review-tools/dist/visual_review_toolbar.js',
|
|
|
|
),
|
2020-12-07 19:09:45 -05:00
|
|
|
to: WEBPACK_OUTPUT_PATH,
|
2019-08-23 15:57:21 -04:00
|
|
|
},
|
2019-07-28 01:53:24 -04: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(
|
2020-12-23 16:10:24 -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
|
2020-12-23 16:10:24 -05:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-09-11 12:36:18 -04:00
|
|
|
// output the in-memory heap size upon compilation and exit
|
|
|
|
WEBPACK_MEMORY_TEST && {
|
|
|
|
apply(compiler) {
|
|
|
|
compiler.hooks.emit.tapAsync('ReportMemoryConsumptionPlugin', (compilation, callback) => {
|
|
|
|
console.log('Assets compiled...');
|
|
|
|
if (global.gc) {
|
|
|
|
console.log('Running garbage collection...');
|
|
|
|
global.gc();
|
|
|
|
} else {
|
|
|
|
console.error(
|
|
|
|
"WARNING: you must use the --expose-gc node option to accurately measure webpack's heap size",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const memoryUsage = process.memoryUsage().heapUsed;
|
2020-12-23 16:10:24 -05:00
|
|
|
const toMB = (bytes) => Math.floor(bytes / 1024 / 1024);
|
2019-09-11 12:36:18 -04:00
|
|
|
|
|
|
|
console.log(`Webpack heap size: ${toMB(memoryUsage)} MB`);
|
|
|
|
|
2019-12-04 10:11:23 -05:00
|
|
|
const webpackStatistics = {
|
|
|
|
memoryUsage,
|
|
|
|
date: Date.now(), // milliseconds
|
|
|
|
commitSHA: process.env.CI_COMMIT_SHA,
|
|
|
|
nodeVersion: process.versions.node,
|
|
|
|
webpackVersion: WEBPACK_VERSION,
|
|
|
|
};
|
|
|
|
|
|
|
|
console.log(webpackStatistics);
|
|
|
|
|
|
|
|
fs.writeFileSync(
|
|
|
|
path.join(ROOT_PATH, 'webpack-dev-server.json'),
|
|
|
|
JSON.stringify(webpackStatistics),
|
|
|
|
);
|
|
|
|
|
2019-09-11 12:36:18 -04:00
|
|
|
// exit in case we're running webpack-dev-server
|
|
|
|
IS_DEV_SERVER && process.exit();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-05-18 19:23:28 -04:00
|
|
|
// 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-09-26 20:06:23 -04:00
|
|
|
statsOptions: {
|
|
|
|
source: false,
|
|
|
|
},
|
2018-05-18 19:23:28 -04:00
|
|
|
}),
|
2019-03-13 17:54:52 -04:00
|
|
|
|
|
|
|
new webpack.DefinePlugin({
|
2019-07-04 07:36:49 -04:00
|
|
|
// This one is used to define window.gon.ee and other things properly in tests:
|
2019-10-16 14:08:01 -04:00
|
|
|
'process.env.IS_EE': JSON.stringify(IS_EE),
|
2019-07-04 07:36:49 -04:00
|
|
|
// This one is used to check against "EE" properly in application code
|
|
|
|
IS_EE: IS_EE ? 'window.gon && window.gon.ee' : JSON.stringify(false),
|
2020-12-07 19:09:45 -05:00
|
|
|
// This is used by Sourcegraph because these assets are loaded dnamically
|
|
|
|
'process.env.SOURCEGRAPH_PUBLIC_PATH': JSON.stringify(SOURCEGRAPH_PUBLIC_PATH),
|
2019-03-13 17:54:52 -04:00
|
|
|
}),
|
2020-06-08 14:08:27 -04:00
|
|
|
|
|
|
|
/* Pikaday has a optional dependency to moment.
|
|
|
|
We are currently not utilizing moment.
|
|
|
|
Ignoring this import removes warning from our development build.
|
|
|
|
Upstream reference:
|
|
|
|
https://github.com/Pikaday/Pikaday/blob/5c1a7559be/pikaday.js#L14
|
|
|
|
*/
|
|
|
|
new webpack.IgnorePlugin(/moment/, /pikaday/),
|
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,
|
2020-11-17 04:09:23 -05:00
|
|
|
public: DEV_SERVER_PUBLIC_ADDR,
|
2020-12-02 13:09:35 -05:00
|
|
|
allowedHosts: DEV_SERVER_ALLOWED_HOSTS,
|
2020-10-07 02:09:03 -04:00
|
|
|
https: DEV_SERVER_HTTPS,
|
2020-09-08 23:08:38 -04:00
|
|
|
contentBase: false,
|
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
|
|
|
|
2019-07-10 17:34:28 -04:00
|
|
|
node: {
|
|
|
|
fs: 'empty', // sqljs requires fs
|
|
|
|
setImmediate: false,
|
|
|
|
},
|
2018-05-18 19:23:28 -04:00
|
|
|
};
|