mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
247 lines
7.7 KiB
TypeScript
247 lines
7.7 KiB
TypeScript
/*
|
|
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
|
*
|
|
* In order to extend the configuration follow the steps in
|
|
* https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config
|
|
*/
|
|
|
|
import rspack, { type Configuration } from '@rspack/core';
|
|
import ESLintPlugin from 'eslint-webpack-plugin';
|
|
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
|
|
import path from 'path';
|
|
// @ts-ignore
|
|
import ReplaceInFileWebpackPlugin from 'replace-in-file-webpack-plugin';
|
|
import { RspackVirtualModulePlugin } from 'rspack-plugin-virtual-module';
|
|
|
|
import { DIST_DIR } from './constants';
|
|
import { getEntries, getPackageJson, getPluginJson, hasLicense } from './utils';
|
|
|
|
const pluginJson = getPluginJson();
|
|
|
|
const virtualPublicPath = new RspackVirtualModulePlugin({
|
|
'grafana-public-path': `
|
|
import amdMetaModule from 'amd-module';
|
|
|
|
__webpack_public_path__ =
|
|
amdMetaModule && amdMetaModule.uri
|
|
? amdMetaModule.uri.slice(0, amdMetaModule.uri.lastIndexOf('/') + 1)
|
|
: 'public/plugins/${pluginJson.id}/';
|
|
`,
|
|
});
|
|
|
|
const config = async (env: Record<string, unknown>): Promise<Configuration> => {
|
|
const baseConfig: Configuration = {
|
|
context: process.cwd(),
|
|
|
|
devtool: env.production ? 'source-map' : 'eval-source-map',
|
|
|
|
entry: await getEntries(),
|
|
|
|
externals: [
|
|
// Required for dynamic publicPath resolution
|
|
{ 'amd-module': 'module' },
|
|
'lodash',
|
|
'jquery',
|
|
'moment',
|
|
'slate',
|
|
'emotion',
|
|
'@emotion/react',
|
|
'@emotion/css',
|
|
'prismjs',
|
|
'slate-plain-serializer',
|
|
'@grafana/slate-react',
|
|
'react',
|
|
'react-dom',
|
|
'react-redux',
|
|
'redux',
|
|
'rxjs',
|
|
'react-router',
|
|
'd3',
|
|
'angular',
|
|
'@grafana/ui',
|
|
'@grafana/runtime',
|
|
'@grafana/data',
|
|
|
|
// Mark legacy SDK imports as external if their name starts with the "grafana/" prefix
|
|
({ request }, callback) => {
|
|
const prefix = 'grafana/';
|
|
const hasPrefix = (request?: string) => request?.indexOf(prefix) === 0;
|
|
const stripPrefix = (request?: string) => request?.substr(prefix.length);
|
|
|
|
if (hasPrefix(request)) {
|
|
return callback(undefined, stripPrefix(request));
|
|
}
|
|
|
|
callback();
|
|
},
|
|
],
|
|
|
|
// Support WebAssembly according to latest spec - makes WebAssembly module async
|
|
experiments: {
|
|
asyncWebAssembly: true,
|
|
},
|
|
|
|
mode: env.production ? 'production' : 'development',
|
|
|
|
module: {
|
|
rules: [
|
|
// This must come first in the rules array otherwise it breaks sourcemaps.
|
|
{
|
|
test: /src\/(?:.*\/)?module\.tsx?$/,
|
|
use: [
|
|
{
|
|
loader: 'imports-loader',
|
|
options: {
|
|
imports: `side-effects grafana-public-path`,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
exclude: /(node_modules)/,
|
|
test: /\.[tj]sx?$/,
|
|
use: {
|
|
loader: 'builtin:swc-loader',
|
|
options: {
|
|
jsc: {
|
|
externalHelpers: true,
|
|
loose: false,
|
|
parser: {
|
|
syntax: 'typescript',
|
|
tsx: true,
|
|
},
|
|
transform: {
|
|
react: {
|
|
development: !env.production,
|
|
refresh: false,
|
|
runtime: 'automatic',
|
|
},
|
|
},
|
|
},
|
|
env: {
|
|
target: 'es2020',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: ['style-loader', 'css-loader'],
|
|
},
|
|
{
|
|
test: /\.s[ac]ss$/,
|
|
use: ['style-loader', 'css-loader', 'sass-loader'],
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg)$/,
|
|
type: 'asset/resource',
|
|
generator: {
|
|
filename: Boolean(env.production) ? '[hash][ext]' : '[file]',
|
|
},
|
|
},
|
|
{
|
|
test: /\.(woff|woff2|eot|ttf|otf)(\?v=\d+\.\d+\.\d+)?$/,
|
|
type: 'asset/resource',
|
|
generator: {
|
|
filename: Boolean(env.production) ? '[hash][ext]' : '[file]',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
output: {
|
|
filename: '[name].js',
|
|
library: {
|
|
type: 'amd',
|
|
},
|
|
path: path.resolve(process.cwd(), DIST_DIR),
|
|
publicPath: `public/plugins/${pluginJson.id}/`,
|
|
uniqueName: pluginJson.id,
|
|
},
|
|
|
|
plugins: [
|
|
virtualPublicPath,
|
|
new rspack.CopyRspackPlugin({
|
|
patterns: [
|
|
// If src/README.md exists use it; otherwise the root README
|
|
// To `compiler.options.output`
|
|
{ from: 'README.md', to: '.', force: true },
|
|
{ from: 'plugin.json', to: '.' },
|
|
{ from: hasLicense() ? 'LICENSE' : '../../../../../LICENSE', to: '.' }, // Point to Grafana License by default
|
|
{ from: 'CHANGELOG.md', to: '.', force: true },
|
|
{
|
|
from: '**/*.json',
|
|
to: '.',
|
|
globOptions: { ignore: ['**/dist/**', '**/tsconfig.json', '**/package.json', '**/project.json'] },
|
|
}, // Optional
|
|
{ from: '**/*.svg', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: '**/*.png', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: '**/*.html', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: 'img/**/*', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: 'libs/**/*', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: 'static/**/*', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true, globOptions: { ignore: ['**/dist/**'] } }, // Optional
|
|
],
|
|
}),
|
|
// Replace certain template-variables in the README and plugin.json
|
|
new ReplaceInFileWebpackPlugin([
|
|
{
|
|
dir: DIST_DIR,
|
|
files: ['plugin.json', 'README.md'],
|
|
rules: [
|
|
{
|
|
search: /\%VERSION\%/g,
|
|
replace: env.commit ? `${getPackageJson().version}-${env.commit}` : getPackageJson().version,
|
|
},
|
|
{
|
|
search: /\%TODAY\%/g,
|
|
replace: new Date().toISOString().substring(0, 10),
|
|
},
|
|
{
|
|
search: /\%PLUGIN_ID\%/g,
|
|
replace: pluginJson.id,
|
|
},
|
|
],
|
|
},
|
|
]),
|
|
...(env.development
|
|
? [
|
|
new ForkTsCheckerWebpackPlugin({
|
|
async: Boolean(env.development),
|
|
issue: {
|
|
include: [{ file: '**/*.{ts,tsx}' }],
|
|
},
|
|
typescript: { configFile: path.join(process.cwd(), 'tsconfig.json') },
|
|
}),
|
|
new ESLintPlugin({
|
|
extensions: ['.ts', '.tsx'],
|
|
lintDirtyModulesOnly: true, // don't lint on start, only lint changed files
|
|
cacheLocation: path.resolve(
|
|
__dirname,
|
|
'../../node_modules/.cache/eslint-webpack-plugin',
|
|
path.basename(process.cwd()),
|
|
'.eslintcache'
|
|
),
|
|
}),
|
|
]
|
|
: []),
|
|
],
|
|
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js', '.jsx'],
|
|
// handle resolving "rootDir" paths
|
|
modules: [path.resolve(process.cwd(), 'src'), 'node_modules'],
|
|
},
|
|
|
|
stats: env.production ? 'normal' : 'minimal',
|
|
|
|
watchOptions: {
|
|
ignored: ['**/node_modules', '**/dist', '**/.yarn'],
|
|
},
|
|
};
|
|
|
|
return baseConfig;
|
|
};
|
|
|
|
export default config;
|