feat(cloud-monitoring): migrate to rspack

This commit is contained in:
Jack Westbrook
2024-11-10 12:25:50 +01:00
parent ae8ab721c5
commit 15c52a88fe
3 changed files with 9 additions and 8 deletions

View File

@@ -28,6 +28,7 @@
"devDependencies": {
"@grafana/e2e-selectors": "11.6.0-pre",
"@grafana/plugin-configs": "11.6.0-pre",
"@rspack/cli": "^1.0.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
@@ -41,16 +42,15 @@
"@types/react-dom": "18.3.5",
"react-select-event": "5.5.1",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"webpack": "5.97.1"
"typescript": "5.7.3"
},
"peerDependencies": {
"@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

@@ -0,0 +1,4 @@
import config from '@grafana/plugin-configs/rspack.config';
// eslint-disable-next-line no-barrel-files/no-barrel-files
export default config;

View File

@@ -1,3 +0,0 @@
import config from '@grafana/plugin-configs/webpack.config';
export default config;