feat(jaeger): migrate to rspack

This commit is contained in:
Jack Westbrook
2024-11-10 12:28:09 +01:00
parent 454b82ae20
commit a76a302004
2 changed files with 6 additions and 4 deletions

View File

@@ -24,6 +24,7 @@
},
"devDependencies": {
"@grafana/plugin-configs": "workspace:*",
"@rspack/cli": "^1.0.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
@@ -44,9 +45,9 @@
"@grafana/runtime": "*"
},
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"build:commit": "webpack -c ./webpack.config.ts --env production --env commit=$(git rev-parse --short HEAD)",
"dev": "webpack -w -c ./webpack.config.ts --env development"
"build": "rspack -c ./rspack.config.ts --env production",
"build:commit": "rspack -c ./rspack.config.ts --env production --env commit=$(git rev-parse --short HEAD)",
"dev": "rspack -w -c ./rspack.config.ts --env development"
},
"packageManager": "yarn@4.6.0"
}

View File

@@ -1,4 +1,4 @@
import config from '@grafana/plugin-configs/webpack.config';
import config from '@grafana/plugin-configs/rspack.config';
const configWithFallback = async (env: Record<string, unknown>) => {
const response = await config(env);
@@ -11,4 +11,5 @@ const configWithFallback = async (env: Record<string, unknown>) => {
return response;
};
// eslint-disable-next-line no-barrel-files/no-barrel-files
export default configWithFallback;