Skip to content

Commit

Permalink
Merge pull request opendatahub-io#2876 from christianvogt/webpack-war…
Browse files Browse the repository at this point in the history
…nings

reduce warnings in webpack prod build
  • Loading branch information
openshift-merge-bot[bot] authored Jun 10, 2024
2 parents 5f915b0 + 7a5e952 commit b4db549
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions frontend/config/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = merge(
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[name].bundle.css',
ignoreOrder: true,
}),
],
module: {
Expand Down
6 changes: 3 additions & 3 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@
"babel-plugin-transform-imports": "^2.0.0",
"chai-subset": "^1.6.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.1",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^4.2.2",
"core-js": "^3.37.1",
"cypress": "^13.10.0",
"cypress-axe": "^1.5.0",
"dotenv": "^8.2.0",
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/table/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ export * from './const';
export { default as Table } from './Table';
export { default as TableBase } from './TableBase';
export { default as useCheckboxTable } from './useCheckboxTable';
export { default as useCheckboxTableBase, UseCheckboxTableBaseProps } from './useCheckboxTableBase';
export { default as useCheckboxTableBase } from './useCheckboxTableBase';
export type { UseCheckboxTableBaseProps } from './useCheckboxTableBase';

export { default as TableRowTitleDescription } from './TableRowTitleDescription';
export { default as CheckboxTd } from './CheckboxTd';
Expand Down

0 comments on commit b4db549

Please sign in to comment.