Skip to content

Commit 6c820c3

Browse files
committed
updated deps
1 parent 0d27fdb commit 6c820c3

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
2121
- Renamed `Config` interface of `seo` and `validate_html` plugins to `Options`.
2222
- Added export-ignore paths to `.gitattributes`.
2323
- `site.remote()`: support commit SHA for GitHub versions.
24-
- Updated dependencies: `deno-loader`, `tailwindcss`, `html-validate`, `magic-string`, `minify-html` and some icons.
24+
- Updated dependencies: `deno-loader`, `tailwindcss`, `html-validate`, `magic-string`, `minify-html`, `sass`, `esbuild` and some icons.
2525

2626
## [3.1.1] - 2025-10-20
2727
### Added

deps/esbuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://cdn.jsdelivr.net/gh/esbuild/[email protected].11/mod.js";
1+
export * from "https://cdn.jsdelivr.net/gh/esbuild/[email protected].12/mod.js";

deps/html_validate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "npm:html-validate@10.2.1";
1+
export * from "npm:html-validate@10.3.0";

deps/icons.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,55 +33,55 @@ export const catalogs: Catalog[] = [
3333
{
3434
// https://lucide.dev/
3535
id: "lucide",
36-
src: "https://cdn.jsdelivr.net/npm/lucide-static@0.548.0/icons/{name}.svg",
36+
src: "https://cdn.jsdelivr.net/npm/lucide-static@0.552.0/icons/{name}.svg",
3737
},
3838
{
3939
// https://fonts.google.com/icons?icon.set=Material+Symbols
4040
id: "material-100",
4141
src:
42-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-100@0.38.0/{variant}/{name}.svg",
42+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-100@0.39.1/{variant}/{name}.svg",
4343
variants: ["outlined", "rounded", "sharp"],
4444
},
4545
{
4646
// https://fonts.google.com/icons?icon.set=Material+Symbols
4747
id: "material-200",
4848
src:
49-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-200@0.38.0/{variant}/{name}.svg",
49+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-200@0.39.1/{variant}/{name}.svg",
5050
variants: ["outlined", "rounded", "sharp"],
5151
},
5252
{
5353
// https://fonts.google.com/icons?icon.set=Material+Symbols
5454
id: "material-300",
5555
src:
56-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-300@0.38.0/{variant}/{name}.svg",
56+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-300@0.39.1/{variant}/{name}.svg",
5757
variants: ["outlined", "rounded", "sharp"],
5858
},
5959
{
6060
// https://fonts.google.com/icons?icon.set=Material+Symbols
6161
id: "material-400",
6262
src:
63-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.38.0/{variant}/{name}.svg",
63+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.39.1/{variant}/{name}.svg",
6464
variants: ["outlined", "rounded", "sharp"],
6565
},
6666
{
6767
// https://fonts.google.com/icons?icon.set=Material+Symbols
6868
id: "material-500",
6969
src:
70-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-500@0.38.0/{variant}/{name}.svg",
70+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-500@0.39.1/{variant}/{name}.svg",
7171
variants: ["outlined", "rounded", "sharp"],
7272
},
7373
{
7474
// https://fonts.google.com/icons?icon.set=Material+Symbols
7575
id: "material-600",
7676
src:
77-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-600@0.38.0/{variant}/{name}.svg",
77+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-600@0.39.1/{variant}/{name}.svg",
7878
variants: ["outlined", "rounded", "sharp"],
7979
},
8080
{
8181
// https://fonts.google.com/icons?icon.set=Material+Symbols
8282
id: "material-700",
8383
src:
84-
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-700@0.38.0/{variant}/{name}.svg",
84+
"https://cdn.jsdelivr.net/npm/@material-symbols/svg-700@0.39.1/{variant}/{name}.svg",
8585
variants: ["outlined", "rounded", "sharp"],
8686
},
8787
{
@@ -116,7 +116,7 @@ export const catalogs: Catalog[] = [
116116
{
117117
// https://simpleicons.org/
118118
id: "simpleicons",
119-
src: "https://cdn.jsdelivr.net/npm/simple-icons@15.18.0/icons/{name}.svg",
119+
src: "https://cdn.jsdelivr.net/npm/simple-icons@15.19.0/icons/{name}.svg",
120120
},
121121
{
122122
// https://tabler.io/icons
@@ -186,7 +186,7 @@ export const catalogs: Catalog[] = [
186186
// https://primer.style/foundations/icons
187187
id: "octicons",
188188
src:
189-
"https://cdn.jsdelivr.net/npm/@primer/octicons@19.19.0/build/svg/{name}-{variant}.svg",
189+
"https://cdn.jsdelivr.net/npm/@primer/octicons@19.20.0/build/svg/{name}-{variant}.svg",
190190
variants: ["24", "16", "12", "48", "96"],
191191
},
192192
{

deps/sass.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "npm:[email protected].2";
1+
export * from "npm:[email protected].3";

0 commit comments

Comments
 (0)