mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
4ad7aed096
* user essentials mob! 🔱 lastFile:scripts/webpack/webpack.dev.js * user essentials mob! 🔱 * delete results.md Co-authored-by: Joao Silva <joao.silva@grafana.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com> Co-authored-by: L-M-K-B <48948963+L-M-K-B@users.noreply.github.com> Co-authored-by: tskarhed <1438972+tskarhed@users.noreply.github.com> Co-authored-by: Roxana Turc <anamaria-roxana.turc@grafana.com> --------- Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com> Co-authored-by: Joao Silva <joao.silva@grafana.com> Co-authored-by: L-M-K-B <48948963+L-M-K-B@users.noreply.github.com> Co-authored-by: tskarhed <1438972+tskarhed@users.noreply.github.com> Co-authored-by: Roxana Turc <anamaria-roxana.turc@grafana.com>
127 lines
3.8 KiB
JavaScript
127 lines
3.8 KiB
JavaScript
'use strict';
|
|
|
|
const browserslist = require('browserslist');
|
|
const { resolveToEsbuildTarget } = require('esbuild-plugin-browserslist');
|
|
const ESLintPlugin = require('eslint-webpack-plugin');
|
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const path = require('path');
|
|
const { DefinePlugin } = require('webpack');
|
|
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 = {}) => {
|
|
return merge(common, {
|
|
devtool: 'source-map',
|
|
mode: 'development',
|
|
|
|
entry: {
|
|
app: './public/app/index.ts',
|
|
dark: './public/sass/grafana.dark.scss',
|
|
light: './public/sass/grafana.light.scss',
|
|
},
|
|
|
|
// If we enabled watch option via CLI
|
|
watchOptions: {
|
|
ignored: /node_modules/,
|
|
},
|
|
|
|
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,
|
|
}),
|
|
],
|
|
},
|
|
|
|
// https://webpack.js.org/guides/build-performance/#output-without-path-info
|
|
output: {
|
|
pathinfo: false,
|
|
},
|
|
|
|
// https://webpack.js.org/guides/build-performance/#avoid-extra-optimization-steps
|
|
optimization: {
|
|
moduleIds: 'named',
|
|
runtimeChunk: true,
|
|
removeAvailableModules: false,
|
|
removeEmptyChunks: false,
|
|
splitChunks: false,
|
|
},
|
|
|
|
// enable persistent cache for faster cold starts
|
|
cache: {
|
|
type: 'filesystem',
|
|
name: 'grafana-default-development',
|
|
buildDependencies: {
|
|
config: [__filename],
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
parseInt(env.noTsCheck, 10)
|
|
? new DefinePlugin({}) // bogus plugin to satisfy webpack API
|
|
: new ForkTsCheckerWebpackPlugin({
|
|
async: true, // don't block webpack emit
|
|
typescript: {
|
|
mode: 'write-references',
|
|
memoryLimit: 4096,
|
|
diagnosticOptions: {
|
|
semantic: true,
|
|
syntactic: true,
|
|
},
|
|
},
|
|
}),
|
|
parseInt(env.noLint, 10)
|
|
? new DefinePlugin({}) // bogus plugin to satisfy webpack API
|
|
: new ESLintPlugin({
|
|
cache: true,
|
|
lintDirtyModulesOnly: true, // don't lint on start, only lint changed files
|
|
extensions: ['.ts', '.tsx'],
|
|
}),
|
|
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,
|
|
chunksSortMode: 'none',
|
|
excludeChunks: ['dark', 'light'],
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
filename: path.resolve(__dirname, '../../public/views/index.html'),
|
|
template: path.resolve(__dirname, '../../public/views/index-template.html'),
|
|
inject: false,
|
|
chunksSortMode: 'none',
|
|
excludeChunks: ['dark', 'light'],
|
|
}),
|
|
new HTMLWebpackCSSChunks(),
|
|
new DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify('development'),
|
|
},
|
|
}),
|
|
],
|
|
});
|
|
};
|