Skip to content

Commit a51c246

Browse files
committed
Dependecy update
1 parent 3bed8e4 commit a51c246

File tree

15 files changed

+363
-339
lines changed

15 files changed

+363
-339
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
steps:
5757
- name: Deploy to GitHub Pages
5858
id: deployment
59-
uses: actions/deploy-pages@v2
59+
uses: actions/deploy-pages@v2

demo-repository/.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
steps:
5757
- name: Deploy to GitHub Pages
5858
id: deployment
59-
uses: actions/deploy-pages@v2
59+
uses: actions/deploy-pages@v2

demo-repository/docs/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"serve": "deno task lume -s --port=8000"
55
},
66
"imports": {
7-
"lume/": "https://deno.land/x/lume@v2.0.1/",
8-
"lumocs/": "https://deno.land/x/[email protected].2/"
7+
"lume/": "https://deno.land/x/lume@v2.3.3/",
8+
"lumocs/": "https://deno.land/x/[email protected].3/"
99
}
1010
}

deno.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "0.1.3",
23
"lint": {
34
"exclude": [
45
"**/_site"

docs/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"serve": "deno task lume -s --port=8000"
55
},
66
"imports": {
7-
"lume/": "https://deno.land/x/lume@v2.0.1/",
7+
"lume/": "https://deno.land/x/lume@v2.3.3/",
88
"lumocs/": "../"
99
}
1010
}

docs/src/_data.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
},
1010

1111
"substitute": {
12-
"$LUMOCS_VERSION": "0.1.2",
13-
"$LUME_VERSION": "v2.0.1"
12+
"$LUMOCS_VERSION": "0.1.3",
13+
"$LUME_VERSION": "v2.3.3"
1414
},
1515

1616
"top_links": [

docs/src/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ understand the changes at a glance.
1313

1414
<!-- TOC -->
1515

16+
## Version 0.1.3
17+
18+
**Chore**
19+
20+
- Use Lume `v2.3.3` instead of `v.2.0.1`
21+
1622
## Version 0.1.2
1723

1824
**Fixed**

docs/src/css/custom.css

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,46 @@
44
column-gap: 0;
55
}
66
.hero-box {
7-
background-color: var(--bg-shaded-2);
8-
padding: 1rem;
7+
background-color: var(--bg-shaded-2);
8+
padding: 1rem;
99
}
1010
.hero-box code {
11-
font-size: 0.8rem;
12-
padding: 0.4rem;
13-
border-radius: 0.5rem;
14-
margin-top: 1rem;
15-
word-break: break-word;
16-
background-color: var(--bg-shaded-inv);
17-
color: var(--fg-shaded-inv);
18-
width: 100%;
11+
font-size: 0.8rem;
12+
padding: 0.4rem;
13+
border-radius: 0.5rem;
14+
margin-top: 1rem;
15+
word-break: break-word;
16+
background-color: var(--bg-shaded-inv);
17+
color: var(--fg-shaded-inv);
18+
width: 100%;
1919
}
2020
.hero-box code pre {
21-
background-color: var(--bg-shaded-inv);
22-
color: var(--fg-shaded-inv);
21+
background-color: var(--bg-shaded-inv);
22+
color: var(--fg-shaded-inv);
2323
}
2424
.small-quote {
25-
display: block;
26-
font-size: 0.85rem;
27-
margin-top: 0.75rem;
28-
font-style: italic;
25+
display: block;
26+
font-size: 0.85rem;
27+
margin-top: 0.75rem;
28+
font-style: italic;
2929
}
3030

3131
@media (min-width: 992px) {
32-
.hero-box {
33-
padding-left: 0.25rem;
34-
}
35-
.hero-box-left {
36-
border-top-left-radius: 0.75rem;
37-
border-bottom-left-radius: 0.75rem;
38-
padding-left: 1rem;
39-
}
40-
.hero-box-right {
41-
border-top-right-radius: 0.75rem;
42-
border-bottom-right-radius: 0.75rem;
43-
}
32+
.hero-box {
33+
padding-left: 0.25rem;
34+
}
35+
.hero-box-left {
36+
border-top-left-radius: 0.75rem;
37+
border-bottom-left-radius: 0.75rem;
38+
padding-left: 1rem;
39+
}
40+
.hero-box-right {
41+
border-top-right-radius: 0.75rem;
42+
border-bottom-right-radius: 0.75rem;
43+
}
4444
}
4545

4646
/* Typography */
4747
.primary {
48-
color: var(--primary);
49-
}
48+
color: var(--primary);
49+
}

init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Define Lume and Lumocs versions here
2-
const lumeVersion = "v2.0.1";
3-
const lumocsVersion = "0.1.2";
2+
const lumeVersion = "v2.3.3";
3+
const lumocsVersion = "0.1.3";
44

55
// deno.json template
66
const denoJsonTemplate = `{

plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import sitemap from "lume/plugins/sitemap.ts";
1010
import type { Page, Site } from "lume/core.ts";
1111
import code_highlight from "lume/plugins/code_highlight.ts";
1212

13-
import toc from "https://deno.land/x/lume_markdown_plugins@v0.5.1/toc.ts";
13+
import toc from "https://deno.land/x/lume_markdown_plugins@v0.7.1/toc.ts";
1414

1515
import { renderTOC } from "./toc.ts";
1616

0 commit comments

Comments
 (0)