Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-madlani committed Sep 28, 2024
1 parent 49f323f commit 212f368
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 200 deletions.
6 changes: 3 additions & 3 deletions openmetadata-ui/src/main/resources/ui/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"editor.formatOnSave": true,

"editor.codeActionsOnSave": {
"source.fixAll.eslint": true, // eslint --fix on save
"source.fixAll.stylelint": true, // stylelint --fix on save
"source.organizeImports": true // Organize imports on save
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.organizeImports": "explicit"
},

// Indentations purely based on linters and file formatters, not based on existing occurrences
Expand Down
13 changes: 3 additions & 10 deletions openmetadata-ui/src/main/resources/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"@tiptap/starter-kit": "^2.3.0",
"@tiptap/suggestion": "^2.3.0",
"@toast-ui/react-editor": "^3.1.8",
"@types/turndown": "^5.0.4",
"@windmillcode/quill-emoji": "^2.0.1000",
"analytics": "^0.8.1",
"antd": "4.24.0",
Expand All @@ -95,7 +94,6 @@
"jwt-decode": "^3.1.2",
"katex": "^0.16.10",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"oidc-client": "^1.11.5",
Expand Down Expand Up @@ -182,6 +180,7 @@
"@types/recharts": "^1.8.23",
"@types/showdown": "^2.0.0",
"@types/testing-library__jest-dom": "^5.9.5",
"@types/turndown": "^5.0.4",
"@types/use-analytics": "^0.0.0",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
Expand All @@ -192,7 +191,6 @@
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^6.7.2",
"dotenv": "^16.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-i18next": "^6.0.0-2",
Expand All @@ -203,7 +201,6 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "6.5.0",
"fs-extra": "^10.1.0",
Expand All @@ -212,16 +209,14 @@
"i18next-json-sync": "^3.1.2",
"jest": "^26.6.3",
"jest-sonar-reporter": "^2.0.0",
"less-loader": "^11.0.0",
"license-check-and-add": "^4.0.5",
"lint-staged": "^10.3.0",
"mini-css-extract-plugin": "^2.7.0",
"organize-imports-cli": "^0.10.0",
"pinst": "^3.0.0",
"postcss-loader": "^6.1.0",
"prettier": "^2.1.2",
"react-test-renderer": "^16.14.0",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.1",
"sync-i18n": "^0.0.20",
"ts-jest": "^26.4.4",
Expand All @@ -230,10 +225,8 @@
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.2",
"webpackbar": "5.0.2"
"webpack-dev-server": "4.15.2"
},
"resolutions": {
"history": "4.5.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ module.exports = {
test: /\.(css)$/,
use: ['style-loader', 'css-loader'],
},
// .less files to be handled by less-loader
{
test: /\.less$/,
use: [
Expand Down Expand Up @@ -109,7 +110,6 @@ module.exports = {
extensions: ['.ts', '.tsx', '.js', '.css', '.less', '.svg'],
fallback: {
https: require.resolve('https-browserify'),
path: require.resolve('path-browserify'),
fs: false,
'process/browser': require.resolve('process/browser'),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ module.exports = {
test: /\.(css)$/,
use: ['style-loader', 'css-loader'],
},
// .less files to be handled by less-loader
{
test: /\.less$/,
use: [
Expand Down Expand Up @@ -108,7 +109,6 @@ module.exports = {
extensions: ['.ts', '.tsx', '.js', '.css', '.less', '.svg'],
fallback: {
https: require.resolve('https-browserify'),
path: require.resolve('path-browserify'),
fs: false,
'process/browser': require.resolve('process/browser'),
},
Expand Down
Loading

0 comments on commit 212f368

Please sign in to comment.