Skip to content

Commit

Permalink
chore: Update webpack (#4581)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Oct 1, 2024
1 parent 59aa2f7 commit 38207ce
Show file tree
Hide file tree
Showing 7 changed files with 7,388 additions and 21,728 deletions.
1 change: 0 additions & 1 deletion frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
legacy-peer-deps=true
29,093 changes: 7,375 additions & 21,718 deletions frontend/package-lock.json

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
"node": "18.x",
"npm": "9.x"
},
"overrides": {
"react": "16.14.0",
"@material-ui/core": "4.12.4"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.3",
"@amplitude/plugin-session-replay-browser": "^1.6.24",
Expand Down Expand Up @@ -127,15 +131,15 @@
"redux-persist": "^6.0.0",
"refractor": "^4.8.1",
"sass": "1.54.8",
"sass-loader": "13.0.2",
"sass-loader": "16.0.1",
"semver": "^7.5.2",
"style-loader": "1.3.0",
"suppress-exit-code": "^1.0.0",
"terser-webpack-plugin": "^5.3.6",
"testcafe-react-selectors": "^5.0.3",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"webpack": "5.76.0",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "5.3.4",
Expand Down
2 changes: 1 addition & 1 deletion frontend/web/styles/3rdParty/_hljs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
padding: 7px 12px;
border-radius: $border-radius-sm;
margin-right: 5px;
margin-bottom: $input-padding-y/2;
margin-bottom: calc($input-padding-y / 2);
.hljs-description {
color: $code-btn-description-color;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/web/styles/components/_tabs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@
}
}
.pill .btn-tab .unread {
margin-left: $spacer/2;
margin-left: calc($spacer / 2);
position: static;
}
4 changes: 2 additions & 2 deletions frontend/web/styles/flexbox/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
}

.flex-column {
margin-left: $input-padding-x/2;
margin-right: $input-padding-x/2;
margin-left: calc($input-padding-x / 2);
margin-right: calc($input-padding-x / 2);
}

.flex-1 {
Expand Down
6 changes: 3 additions & 3 deletions frontend/web/styles/project/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
font-size: $font-caption;
line-height: $line-height-xsm;
&__line {
margin-left: $spacer/4;
margin-left: calc($spacer / 4);
height: 2px;
border-bottom: 1px dashed $hr-border-color;
}
Expand All @@ -16,10 +16,10 @@
font-size: $font-caption;
line-height: $line-height-xsm;
&__line {
margin-right: $spacer/4;
margin-right: calc($spacer / 4);
&:last-child {
margin-right: 0;
margin-left: $spacer/4;
margin-left: calc($spacer / 4);
}
height: 2px;
border-bottom: 1px solid $hr-border-color;
Expand Down

0 comments on commit 38207ce

Please sign in to comment.