mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
1fbff3c807
* Update dependency esbuild to v0.17.18 * chore(npm): update all esbuild dependencies to use esbuild@0.17.18 * build(esbuild): update configs so esbuild-loader matches loader from file extension * build(webpack): fix failed monaco editor loading due to require not existing * chore(esbuild): bump to 0.17.19 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
99 lines
3.1 KiB
JavaScript
99 lines
3.1 KiB
JavaScript
'use strict';
|
|
|
|
const browserslist = require('browserslist');
|
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
|
const { EsbuildPlugin } = require('esbuild-loader');
|
|
const { resolveToEsbuildTarget } = require('esbuild-plugin-browserslist');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const path = require('path');
|
|
const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
|
|
const { merge } = require('webpack-merge');
|
|
|
|
const HTMLWebpackCSSChunks = require('./plugins/HTMLWebpackCSSChunks');
|
|
const common = require('./webpack.common.js');
|
|
const esbuildTargets = resolveToEsbuildTarget(browserslist(), { printUnknownTargets: false });
|
|
|
|
// esbuild-loader 3.0.0+ requires format to be set to prevent it
|
|
// from defaulting to 'iife' which breaks monaco/loader once minified.
|
|
const esbuildOptions = {
|
|
target: esbuildTargets,
|
|
format: undefined,
|
|
};
|
|
|
|
module.exports = (env = {}) =>
|
|
merge(common, {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
|
|
entry: {
|
|
dark: './public/sass/grafana.dark.scss',
|
|
light: './public/sass/grafana.light.scss',
|
|
},
|
|
|
|
module: {
|
|
// Note: order is bottom-to-top and/or right-to-left
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'esbuild-loader',
|
|
options: esbuildOptions,
|
|
},
|
|
},
|
|
require('./sass.rule.js')({
|
|
sourceMap: false,
|
|
preserveUrl: false,
|
|
}),
|
|
],
|
|
},
|
|
optimization: {
|
|
nodeEnv: 'production',
|
|
minimize: parseInt(env.noMinify, 10) !== 1,
|
|
minimizer: [new EsbuildPlugin(esbuildOptions), new CssMinimizerPlugin()],
|
|
},
|
|
|
|
// enable persistent cache for faster builds
|
|
cache: {
|
|
type: 'filesystem',
|
|
name: 'grafana-default-production',
|
|
buildDependencies: {
|
|
config: [__filename],
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
new MiniCssExtractPlugin({
|
|
filename: 'grafana.[name].[contenthash].css',
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
filename: path.resolve(__dirname, '../../public/views/error.html'),
|
|
template: path.resolve(__dirname, '../../public/views/error-template.html'),
|
|
inject: false,
|
|
excludeChunks: ['dark', 'light'],
|
|
chunksSortMode: 'none',
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
filename: path.resolve(__dirname, '../../public/views/index.html'),
|
|
template: path.resolve(__dirname, '../../public/views/index-template.html'),
|
|
inject: false,
|
|
excludeChunks: ['manifest', 'dark', 'light'],
|
|
chunksSortMode: 'none',
|
|
}),
|
|
new HTMLWebpackCSSChunks(),
|
|
new WebpackManifestPlugin({
|
|
fileName: path.join(process.cwd(), 'manifest.json'),
|
|
filter: (file) => !file.name.endsWith('.map'),
|
|
}),
|
|
function () {
|
|
this.hooks.done.tap('Done', function (stats) {
|
|
if (stats.compilation.errors && stats.compilation.errors.length) {
|
|
console.log(stats.compilation.errors);
|
|
process.exit(1);
|
|
}
|
|
});
|
|
},
|
|
],
|
|
});
|