diff --git a/public/app/plugins/datasource/tempo/package.json b/public/app/plugins/datasource/tempo/package.json index 1cf120ff959..8e6cc49e546 100644 --- a/public/app/plugins/datasource/tempo/package.json +++ b/public/app/plugins/datasource/tempo/package.json @@ -40,6 +40,7 @@ }, "devDependencies": { "@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", @@ -55,17 +56,16 @@ "glob": "11.0.1", "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": "rspack -c ./rspack.config.ts --env production", "build:stats": "yarn build --env stats --profile --json=compilation-stats.json", - "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: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" } diff --git a/public/app/plugins/datasource/tempo/rspack.config.ts b/public/app/plugins/datasource/tempo/rspack.config.ts new file mode 100644 index 00000000000..9360cb088d9 --- /dev/null +++ b/public/app/plugins/datasource/tempo/rspack.config.ts @@ -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; diff --git a/public/app/plugins/datasource/tempo/webpack.config.ts b/public/app/plugins/datasource/tempo/webpack.config.ts deleted file mode 100644 index 4da5a990cfa..00000000000 --- a/public/app/plugins/datasource/tempo/webpack.config.ts +++ /dev/null @@ -1,3 +0,0 @@ -import config from '@grafana/plugin-configs/webpack.config'; - -export default config;