Skip to content

Commit

Permalink
Dependency Updates 07-26-24
Browse files Browse the repository at this point in the history
  • Loading branch information
christof-wittreich committed Jul 26, 2024
1 parent 6c99f2e commit cdcab50
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 48 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"files": ["*.js"],
"rules": {
"n/no-unpublished-require": "off", // 96 failures across 79 files - many "@playwright/test" related
"n/no-unsupported-features/node-builtins": "off"
}
}
]
Expand Down
76 changes: 48 additions & 28 deletions package-lock.json

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

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"lint:scss": "npx stylelint ./web/scss/**/*.scss",
"lint:js": "npx eslint . --quiet",
"preinstall": "node tasks/util/checkNodeVersion.js",
"postinstall": "patch-package && husky install",
"postinstall": "patch-package && husky",
"start": "node ./tasks/util/start.js",
"t-debug": "npx playwright test --debug",
"test": "run-script-os",
Expand Down Expand Up @@ -86,7 +86,7 @@
"@playwright/test": "^1.45.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@webpack-cli/serve": "^2.0.5",
"ajv": "^8.16.0",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"cheerio": "^1.0.0-rc.12",
Expand All @@ -103,14 +103,14 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-n": "^17.10.0",
"eslint-plugin-no-storage": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.34.4",
"express": "^4.19.2",
"glob": "^11.0.0",
"husky": "^9.0.11",
"husky": "^9.1.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
Expand All @@ -120,20 +120,20 @@
"node-ssh": "^13.2.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"postcss": "^8.4.39",
"postcss": "^8.4.40",
"postcss-loader": "^8.1.1",
"react-refresh": "^0.14.1",
"react-test-renderer": "^18.3.0",
"redux-mock-store": "^1.5.4",
"run-script-os": "^1.1.6",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"sass": "^1.77.8",
"sass-loader": "^15.0.0",
"shelljs": "^0.8.5",
"showdown": "^2.1.0",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-high-performance-animation": "^1.10.0",
"tar": "^7.4.0",
"tar": "^7.4.3",
"terser-webpack-plugin": "^5.3.10",
"uuid": "^10.0.0",
"webpack": "^5.93.0",
Expand Down
3 changes: 1 addition & 2 deletions web/scss/components/facets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@
border-radius: 20px;
position: relative;
display: inline-block;
cursor: pointer;

span {
font-weight: 500;
}

cursor: pointer;

&:hover {
background: #eee;
color: #111;
Expand Down
6 changes: 3 additions & 3 deletions web/scss/components/modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@
}

.modal-content {
border: none;
border-radius: 6px;

.modal-header {
justify-content: space-between;
}

border: none;
border-radius: 6px;
}

.modal-title {
Expand Down
11 changes: 5 additions & 6 deletions web/scss/features/events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

.event-container {
background: #333;
min-height: 166px;

.no-events {
text-align: center;
Expand All @@ -18,8 +19,6 @@
margin: 15px auto;
}

min-height: 166px;

@media (max-width: $mobile-max-width) {
height: calc(var(--vh, 1vh) * 100 - 85px);
}
Expand Down Expand Up @@ -60,13 +59,13 @@
}

.map-item-list li.item h4.title {
@media (max-width: $mobile-max-width) {
font-size: 1em;
}

color: #ccc;
padding: 0 3px;
margin-left: 40px;

@media (max-width: $mobile-max-width) {
font-size: 1em;
}
}

.map-item-list li.item p,
Expand Down

0 comments on commit cdcab50

Please sign in to comment.