2020-01-25 01:41:34 -07:00
|
|
|
const cssnano = require('cssnano');
|
2020-01-28 00:30:39 -07:00
|
|
|
const fastGlob = require('fast-glob');
|
|
|
|
const FixStyleOnlyEntriesPlugin = require('webpack-fix-style-only-entries');
|
2020-01-25 01:41:34 -07:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2020-05-14 10:06:01 -06:00
|
|
|
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
|
2020-01-25 01:41:34 -07:00
|
|
|
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
|
|
|
const PostCSSPresetEnv = require('postcss-preset-env');
|
2020-01-28 00:30:39 -07:00
|
|
|
const PostCSSSafeParser = require('postcss-safe-parser');
|
2020-02-11 10:02:41 -07:00
|
|
|
const SpriteLoaderPlugin = require('svg-sprite-loader/plugin');
|
2020-01-28 00:30:39 -07:00
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
2020-03-11 13:34:54 -06:00
|
|
|
const {statSync} = require('fs');
|
|
|
|
const {resolve, parse} = require('path');
|
|
|
|
const {SourceMapDevToolPlugin} = require('webpack');
|
2020-01-28 00:30:39 -07:00
|
|
|
|
2020-03-11 13:34:54 -06:00
|
|
|
const glob = (pattern) => fastGlob.sync(pattern, {cwd: __dirname, absolute: true});
|
2020-02-11 10:02:41 -07:00
|
|
|
|
2020-01-28 00:30:39 -07:00
|
|
|
const themes = {};
|
2020-02-11 10:02:41 -07:00
|
|
|
for (const path of glob('web_src/less/themes/*.less')) {
|
2020-01-28 00:30:39 -07:00
|
|
|
themes[parse(path).name] = [path];
|
|
|
|
}
|
2019-11-13 07:52:13 -07:00
|
|
|
|
2020-02-23 01:47:42 -07:00
|
|
|
const isProduction = process.env.NODE_ENV !== 'development';
|
|
|
|
|
2019-11-13 07:52:13 -07:00
|
|
|
module.exports = {
|
2020-02-23 01:47:42 -07:00
|
|
|
mode: isProduction ? 'production' : 'development',
|
2019-11-13 07:52:13 -07:00
|
|
|
entry: {
|
2020-01-28 00:30:39 -07:00
|
|
|
index: [
|
|
|
|
resolve(__dirname, 'web_src/js/index.js'),
|
|
|
|
resolve(__dirname, 'web_src/less/index.less'),
|
|
|
|
],
|
|
|
|
swagger: [
|
2020-02-07 10:09:30 -07:00
|
|
|
resolve(__dirname, 'web_src/js/standalone/swagger.js'),
|
2020-01-28 00:30:39 -07:00
|
|
|
],
|
|
|
|
jquery: [
|
|
|
|
resolve(__dirname, 'web_src/js/jquery.js'),
|
|
|
|
],
|
2020-02-11 10:02:41 -07:00
|
|
|
icons: glob('node_modules/@primer/octicons/build/svg/**/*.svg'),
|
2020-01-28 00:30:39 -07:00
|
|
|
...themes,
|
2019-11-13 07:52:13 -07:00
|
|
|
},
|
2020-01-14 11:02:08 -07:00
|
|
|
devtool: false,
|
2019-11-13 07:52:13 -07:00
|
|
|
output: {
|
2020-01-28 00:30:39 -07:00
|
|
|
path: resolve(__dirname, 'public'),
|
2020-01-25 01:41:34 -07:00
|
|
|
filename: 'js/[name].js',
|
|
|
|
chunkFilename: 'js/[name].js',
|
2019-11-13 07:52:13 -07:00
|
|
|
},
|
|
|
|
optimization: {
|
2020-02-23 01:47:42 -07:00
|
|
|
minimize: isProduction,
|
2020-01-25 01:41:34 -07:00
|
|
|
minimizer: [
|
|
|
|
new TerserPlugin({
|
|
|
|
sourceMap: true,
|
|
|
|
extractComments: false,
|
|
|
|
terserOptions: {
|
2020-04-13 07:02:31 -06:00
|
|
|
keep_fnames: /^(HTML|SVG)/, // https://github.com/fgnass/domino/issues/144
|
2020-01-25 01:41:34 -07:00
|
|
|
output: {
|
|
|
|
comments: false,
|
|
|
|
},
|
2019-11-17 14:39:06 -07:00
|
|
|
},
|
2020-01-25 01:41:34 -07:00
|
|
|
}),
|
|
|
|
new OptimizeCSSAssetsPlugin({
|
|
|
|
cssProcessor: cssnano,
|
|
|
|
cssProcessorOptions: {
|
|
|
|
parser: PostCSSSafeParser,
|
|
|
|
},
|
|
|
|
cssProcessorPluginOptions: {
|
|
|
|
preset: [
|
|
|
|
'default',
|
|
|
|
{
|
|
|
|
discardComments: {
|
|
|
|
removeAll: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2020-01-28 14:57:20 -07:00
|
|
|
splitChunks: {
|
|
|
|
chunks: 'async',
|
|
|
|
name: (_, chunks) => chunks.map((item) => item.name).join('-'),
|
2020-05-14 10:06:01 -06:00
|
|
|
cacheGroups: {
|
|
|
|
// this bundles all monaco's languages into one file instead of emitting 1-65.js files
|
|
|
|
monaco: {
|
|
|
|
test: /monaco-editor/,
|
|
|
|
name: 'monaco',
|
|
|
|
chunks: 'async'
|
|
|
|
}
|
|
|
|
}
|
2020-01-28 14:57:20 -07:00
|
|
|
}
|
2019-11-13 07:52:13 -07:00
|
|
|
},
|
2019-11-14 14:39:51 -07:00
|
|
|
module: {
|
|
|
|
rules: [
|
2020-01-20 03:07:30 -07:00
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
|
|
|
exclude: /node_modules/,
|
2020-01-25 01:41:34 -07:00
|
|
|
loader: 'vue-loader',
|
2020-01-20 03:07:30 -07:00
|
|
|
},
|
2020-03-17 13:08:15 -06:00
|
|
|
{
|
|
|
|
test: require.resolve('jquery-datetimepicker'),
|
|
|
|
use: 'imports-loader?define=>false,exports=>false',
|
|
|
|
},
|
2020-04-13 07:02:31 -06:00
|
|
|
{
|
|
|
|
test: /\.worker\.js$/,
|
2020-05-14 10:06:01 -06:00
|
|
|
exclude: /monaco/,
|
2020-04-13 07:02:31 -06:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'worker-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].js',
|
|
|
|
inline: true,
|
|
|
|
fallback: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-11-14 14:39:51 -07:00
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
2020-01-21 23:35:29 -07:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
2020-02-01 08:12:41 -07:00
|
|
|
cacheDirectory: true,
|
|
|
|
cacheCompression: false,
|
|
|
|
cacheIdentifier: [
|
|
|
|
resolve(__dirname, 'package.json'),
|
|
|
|
resolve(__dirname, 'package-lock.json'),
|
|
|
|
resolve(__dirname, 'webpack.config.js'),
|
|
|
|
].map((path) => statSync(path).mtime.getTime()).join(':'),
|
2020-02-23 01:47:42 -07:00
|
|
|
sourceMaps: true,
|
2020-01-21 23:35:29 -07:00
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
|
|
|
useBuiltIns: 'usage',
|
|
|
|
corejs: 3,
|
2020-01-25 01:41:34 -07:00
|
|
|
},
|
|
|
|
],
|
2020-01-20 03:07:30 -07:00
|
|
|
],
|
2020-01-21 23:35:29 -07:00
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'@babel/plugin-transform-runtime',
|
|
|
|
{
|
|
|
|
regenerator: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
|
|
],
|
2020-01-25 01:41:34 -07:00
|
|
|
},
|
2020-01-21 23:35:29 -07:00
|
|
|
},
|
|
|
|
],
|
2019-11-17 14:39:06 -07:00
|
|
|
},
|
|
|
|
{
|
2020-01-28 00:30:39 -07:00
|
|
|
test: /\.(less|css)$/i,
|
2020-01-25 01:41:34 -07:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: MiniCssExtractPlugin.loader,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2020-01-28 00:30:39 -07:00
|
|
|
importLoaders: 2,
|
2020-05-14 10:06:01 -06:00
|
|
|
url: (_url, resourcePath) => {
|
|
|
|
// only resolve URLs for dependencies
|
|
|
|
return resourcePath.includes('node_modules');
|
|
|
|
},
|
2020-01-25 01:41:34 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
|
|
|
plugins: () => [
|
|
|
|
PostCSSPresetEnv(),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-01-28 00:30:39 -07:00
|
|
|
{
|
|
|
|
loader: 'less-loader',
|
|
|
|
},
|
2020-01-25 01:41:34 -07:00
|
|
|
],
|
2019-11-17 14:39:06 -07:00
|
|
|
},
|
2020-02-11 10:02:41 -07:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'svg-sprite-loader',
|
|
|
|
options: {
|
|
|
|
extract: true,
|
|
|
|
spriteFilename: 'img/svg/icons.svg',
|
|
|
|
symbolId: (path) => {
|
2020-03-11 13:34:54 -06:00
|
|
|
const {name} = parse(path);
|
2020-02-11 10:02:41 -07:00
|
|
|
if (/@primer[/\\]octicons/.test(path)) {
|
|
|
|
return `octicon-${name}`;
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'svgo-loader',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-05-14 10:06:01 -06:00
|
|
|
{
|
|
|
|
test: /\.(ttf|woff2?)$/,
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]',
|
|
|
|
outputPath: 'fonts/',
|
|
|
|
publicPath: (url) => `../fonts/${url}`, // seems required for monaco's font
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-01-25 01:41:34 -07:00
|
|
|
],
|
2020-01-14 11:02:08 -07:00
|
|
|
},
|
|
|
|
plugins: [
|
2020-01-20 03:07:30 -07:00
|
|
|
new VueLoaderPlugin(),
|
2020-02-11 10:02:41 -07:00
|
|
|
// avoid generating useless js output files for css- and svg-only chunks
|
2020-01-28 00:30:39 -07:00
|
|
|
new FixStyleOnlyEntriesPlugin({
|
2020-02-11 10:02:41 -07:00
|
|
|
extensions: ['less', 'scss', 'css', 'svg'],
|
2020-01-28 00:30:39 -07:00
|
|
|
silent: true,
|
|
|
|
}),
|
2020-01-25 01:41:34 -07:00
|
|
|
new MiniCssExtractPlugin({
|
|
|
|
filename: 'css/[name].css',
|
|
|
|
chunkFilename: 'css/[name].css',
|
|
|
|
}),
|
2020-01-14 11:02:08 -07:00
|
|
|
new SourceMapDevToolPlugin({
|
2020-01-25 01:41:34 -07:00
|
|
|
filename: 'js/[name].js.map',
|
2020-01-28 14:57:20 -07:00
|
|
|
include: [
|
|
|
|
'js/index.js',
|
2020-01-14 11:02:08 -07:00
|
|
|
],
|
|
|
|
}),
|
2020-02-11 10:02:41 -07:00
|
|
|
new SpriteLoaderPlugin({
|
|
|
|
plainSprite: true,
|
|
|
|
}),
|
2020-05-14 10:06:01 -06:00
|
|
|
new MonacoWebpackPlugin({
|
|
|
|
filename: 'js/monaco-[name].worker.js',
|
|
|
|
}),
|
2020-01-14 11:02:08 -07:00
|
|
|
],
|
|
|
|
performance: {
|
2020-03-17 16:57:17 -06:00
|
|
|
hints: false,
|
2020-05-14 10:06:01 -06:00
|
|
|
maxEntrypointSize: Infinity,
|
|
|
|
maxAssetSize: Infinity,
|
2020-01-14 11:02:08 -07:00
|
|
|
},
|
2020-01-21 23:35:29 -07:00
|
|
|
resolve: {
|
|
|
|
symlinks: false,
|
2020-02-23 14:34:28 -07:00
|
|
|
alias: {
|
|
|
|
vue$: 'vue/dist/vue.esm.js', // needed because vue's default export is the runtime only
|
|
|
|
},
|
2020-01-25 01:41:34 -07:00
|
|
|
},
|
2020-02-23 01:47:42 -07:00
|
|
|
watchOptions: {
|
|
|
|
ignored: [
|
|
|
|
'node_modules/**',
|
|
|
|
],
|
|
|
|
},
|
2020-05-14 10:06:01 -06:00
|
|
|
stats: {
|
|
|
|
children: false,
|
|
|
|
},
|
2019-11-13 07:52:13 -07:00
|
|
|
};
|