Skip to content

Commit 5325f6a

Browse files
authored
chore(deps): upgrade dependencies; run prettier (#31)
1 parent 43ff0e3 commit 5325f6a

9 files changed

Lines changed: 168 additions & 138 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: github-actions
4-
directory: "/"
4+
directory: '/'
55
schedule:
66
interval: monthly
77

@@ -10,4 +10,4 @@ updates:
1010
github-actions:
1111
applies-to: version-updates
1212
patterns:
13-
- "*"
13+
- '*'

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_data
2+
raw-attachment
3+
zip-attachment

package-lock.json

Lines changed: 131 additions & 120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,20 @@
4141
"@11ty/eleventy": "4.0.0-alpha.6",
4242
"@11ty/eleventy-img": "^6.0.4",
4343
"@11ty/eleventy-navigation": "^1.0.5",
44-
"@11ty/eleventy-plugin-bundle": "^3.0.7",
44+
"@11ty/eleventy-plugin-bundle": "^4.0.2",
4545
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
4646
"clean-css": "^5.3.3",
4747
"cross-env": "^10.1.0",
4848
"eleventy-favicon": "^1.1.3",
4949
"luxon": "^3.7.2",
5050
"pagefind": "^1.5.2",
51-
"prettier": "^3.8.3",
51+
"prettier": "^3.9.6",
5252
"rimraf": "^6.1.3"
5353
},
5454
"overrides": {
5555
"sharp": "^0.32.1"
56+
},
57+
"allowScripts": {
58+
"sharp@0.32.6": true
5659
}
5760
}

public/css/attachment.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
--attachment-download-link-color: #666;
55
}
66

7-
h1, h2, h3, h4, h5, h6 {
7+
h1,
8+
h2,
9+
h3,
10+
h4,
11+
h5,
12+
h6 {
813
font-weight: bold;
914
}
1015

@@ -43,6 +48,7 @@ h6 {
4348
height: auto;
4449
}
4550

46-
code[class*=language-], pre[class*=language-] {
51+
code[class*='language-'],
52+
pre[class*='language-'] {
4753
font-size: 0.75rem;
4854
}

public/css/index.css

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
:root {
33
--font-family: 'Arial', 'Helvetica', 'Verdana', 'sans-serif';
44
--font-family-header: var(--font-family);
5-
--font-family-alternate: Verdana, Arial, 'Bitstream Vera Sans', Helvetica,
6-
sans-serif;
7-
--font-family-monospace: Monaco, Andale Mono WT, Andale Mono, Lucida Console,
8-
Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono,
9-
Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
5+
--font-family-alternate:
6+
Verdana, Arial, 'Bitstream Vera Sans', Helvetica, sans-serif;
7+
--font-family-monospace:
8+
Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter,
9+
DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L,
10+
Courier New, Courier, monospace;
1011
}
1112

1213
/* Theme colors */
@@ -333,7 +334,9 @@ header {
333334
var(--secondary-nav-start-color),
334335
var(--secondary-nav-end-color)
335336
);
336-
box-shadow: 0 -2px 1px var(--secondary-nav-box-shadow), 0 2px 1px black;
337+
box-shadow:
338+
0 -2px 1px var(--secondary-nav-box-shadow),
339+
0 2px 1px black;
337340
}
338341
#jq-secondaryNavigation a {
339342
font-size: 0.8125rem;
@@ -371,7 +374,9 @@ header {
371374
width: 100%;
372375
height: 2px;
373376
background-color: white;
374-
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
377+
transition:
378+
opacity 0.2s ease-in-out,
379+
transform 0.2s ease-in-out;
375380
}
376381
.hamburger-toggle:checked + .hamburger-lines span:first-of-type {
377382
transform: rotateZ(45deg) translate(4px, 4.5px) scaleX(1.2);
@@ -552,7 +557,9 @@ a.ext-link .icon {
552557
right: 0;
553558
background-color: var(--nav-background-color);
554559
z-index: 1;
555-
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
560+
transition:
561+
transform 0.2s ease-in-out,
562+
opacity 0.2s ease-in-out;
556563
transform: translateX(100%);
557564
opacity: 0;
558565
display: flex;

public/css/milestone-summary.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
width: 100%;
2323
height: 17px;
2424
max-width: 398px;
25-
margin-right: 0.5em
25+
margin-right: 0.5em;
2626
}
2727
.progress-bar-fill {
2828
height: 100%;

public/css/postslist.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363
}
6464
.post-metadata time {
6565
margin-right: 1em;
66-
}
66+
}

public/css/search.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
border: 1px solid var(--border-color);
5858
border-top: 0;
5959
border-radius: 0 0 var(--border-radius) var(--border-radius);
60-
box-shadow: 0 2px 4px rgba(0,0,0,.2);
60+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
6161
padding: 10px;
6262
color: var(--text-color);
6363
font-size: 0.875rem;
@@ -93,7 +93,7 @@
9393
margin-top: 2em;
9494
}
9595

96-
@media(min-width: 920px) {
96+
@media (min-width: 920px) {
9797
#search {
9898
width: auto;
9999
}

0 commit comments

Comments
 (0)