Skip to content

Commit

Permalink
chore(deps): update dependency prettier to v3 (#772)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: scissorsneedfoodtoo <[email protected]>
  • Loading branch information
renovate[bot] and scissorsneedfoodtoo authored Nov 3, 2023
1 parent 469c72d commit 15ce3ab
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 20 deletions.
2 changes: 1 addition & 1 deletion mock-www/html/dothraki/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<title>freeCodeCamp.org | Learn to Code</title>
Expand Down
2 changes: 1 addition & 1 deletion mock-www/html/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<title>freeCodeCamp.org | Learn to Code</title>
Expand Down
18 changes: 9 additions & 9 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"node-fetch": "2.7.0",
"npm-run-all": "4.1.5",
"piscina": "3.2.0",
"prettier": "2.8.8",
"prettier": "3.0.3",
"probe-image-size": "7.2.3",
"shx": "0.3.4",
"terser": "5.24.0"
Expand Down
14 changes: 10 additions & 4 deletions src/_includes/assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,8 @@ Usage (In Ghost editor):

.post-full-content table {
-webkit-overflow-scrolling: touch;
background: radial-gradient(
background:
radial-gradient(
ellipse at left,
rgba(0, 0, 0, 0.2) 0%,
rgba(0, 0, 0, 0) 75%
Expand All @@ -1144,7 +1145,9 @@ Usage (In Ghost editor):
)
100% center;
background-attachment: scroll, scroll;
background-size: 10px 100%, 10px 100%;
background-size:
10px 100%,
10px 100%;
background-repeat: no-repeat;
}

Expand Down Expand Up @@ -1335,7 +1338,8 @@ pre.runkit-element {
font-size: 1.4rem;
letter-spacing: 0.2px;
background: white;
box-shadow: rgba(39, 44, 49, 0.08) 0 12px 26px,
box-shadow:
rgba(39, 44, 49, 0.08) 0 12px 26px,
rgba(39, 44, 49, 0.03) 1px 3px 8px;
opacity: 0;
transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
Expand Down Expand Up @@ -1711,7 +1715,9 @@ pre.runkit-element {
color: var(--gray90);
text-decoration: none;
min-height: 148px;
box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.09);
box-shadow:
0 2px 5px -1px rgba(0, 0, 0, 0.15),
0 0 1px rgba(0, 0, 0, 0.09);
border-radius: 3px;
}

Expand Down
8 changes: 4 additions & 4 deletions src/_includes/assets/js/search-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ document.addEventListener('DOMContentLoaded', async () => {
const generateCardNode = (hit, lazyLoad) => {
const featureImageEl = `
<a class="post-card-image-link" href="${hit.url}" aria-label="${
hit.title
}">
hit.title
}">
<img
class="post-card-image"
srcset="
Expand Down Expand Up @@ -133,8 +133,8 @@ document.addEventListener('DOMContentLoaded', async () => {
{% t 'original-author-translator.roles.author', { name: '${
hit.originalPost.author.name
}', locale: '${
translatedLocales[hit.originalPost.localeI18n]
}' } %}
translatedLocales[hit.originalPost.localeI18n]
}' } %}
</a>
<time class="meta-item" datetime="${
hit.originalPost.publishedAt
Expand Down

0 comments on commit 15ce3ab

Please sign in to comment.