Skip to content

Commit fd76d7c

Browse files
committed
updated deps
1 parent 3f5ec63 commit fd76d7c

File tree

7 files changed

+31
-10
lines changed

7 files changed

+31
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
1313
- Added missing tests for SEO plugin.
1414
- Renamed `Config` interface of `seo` and `validate_html` plugins to `Options`.
1515
- Added export-ignore paths to `.gitattributes`.
16-
- Updated dependencies: `deno-loader`, `tailwindcss`.
16+
- Updated dependencies: `deno-loader`, `tailwindcss`, `html-validate`, `magic-string` and some icons.
1717

1818
## [3.1.1] - 2025-10-20
1919
### Added

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.1.2";
1+
export * from "npm:html-validate@10.2.1";

deps/icons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const catalogs: Catalog[] = [
3333
{
3434
// https://lucide.dev/
3535
id: "lucide",
36-
src: "https://cdn.jsdelivr.net/npm/lucide-static@0.546.0/icons/{name}.svg",
36+
src: "https://cdn.jsdelivr.net/npm/lucide-static@0.548.0/icons/{name}.svg",
3737
},
3838
{
3939
// https://fonts.google.com/icons?icon.set=Material+Symbols
@@ -147,7 +147,7 @@ export const catalogs: Catalog[] = [
147147
id: "sargam",
148148
name: capitalize,
149149
src:
150-
"https://cdn.jsdelivr.net/npm/[email protected].4/Icons/{variant}/si_{name}.svg",
150+
"https://cdn.jsdelivr.net/npm/[email protected].5/Icons/{variant}/si_{name}.svg",
151151
variants: [
152152
{ id: "duotone", path: "Duotone" },
153153
{ id: "fill", path: "Fill" },

deps/tailwindcss.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { compile } from "npm:[email protected].15";
2-
export { toSourceMap } from "npm:@tailwindcss/[email protected].15";
3-
export { type ChangedContent, Scanner } from "npm:@tailwindcss/[email protected].15";
4-
export const specifier = "https://cdn.jsdelivr.net/npm/[email protected].15";
1+
export { compile } from "npm:[email protected].16";
2+
export { toSourceMap } from "npm:@tailwindcss/[email protected].16";
3+
export { type ChangedContent, Scanner } from "npm:@tailwindcss/[email protected].16";
4+
export const specifier = "https://cdn.jsdelivr.net/npm/[email protected].16";

deps/unocss.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export {
88
export { presetWind3 } from "npm:@unocss/[email protected]";
99
export { default as transformerVariantGroup } from "npm:@unocss/[email protected]";
1010
export { default as transformerDirectives } from "npm:@unocss/[email protected]";
11-
export { default as MagicString } from "npm:[email protected].19";
11+
export { default as MagicString } from "npm:[email protected].21";
1212

1313
export const resetUrl = "https://cdn.jsdelivr.net/npm/@unocss/[email protected]";

tests/__snapshots__/minify_html.test.ts.snap

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ snapshot[`minify_html plugin 2`] = `[]`;
117117
snapshot[`minify_html plugin 3`] = `
118118
[
119119
{
120-
content: "Uint8Array(558)",
120+
content: "Uint8Array(749)",
121121
data: {
122122
basename: "",
123123
children: \`<!DOCTYPE html>
@@ -150,6 +150,13 @@ snapshot[`minify_html plugin 3`] = `
150150
var c = a + b;
151151
console.log(c);
152152
</script>
153+
<script>
154+
if (window.goatcounter && window.goatcounter.vars) {
155+
window.goatcounter = window.goatcounter.vars
156+
} else {
157+
window.goatcounter = window.goatcounter || {}
158+
}
159+
</script>
153160
</body>
154161
</html>\`,
155162
content: \`<!DOCTYPE html>
@@ -182,6 +189,13 @@ snapshot[`minify_html plugin 3`] = `
182189
var c = a + b;
183190
console.log(c);
184191
</script>
192+
<script>
193+
if (window.goatcounter && window.goatcounter.vars) {
194+
window.goatcounter = window.goatcounter.vars
195+
} else {
196+
window.goatcounter = window.goatcounter || {}
197+
}
198+
</script>
185199
</body>
186200
</html>\`,
187201
date: [],

tests/assets/minify_html/index.vto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,12 @@
2828
var c = a + b;
2929
console.log(c);
3030
</script>
31+
<script>
32+
if (window.goatcounter && window.goatcounter.vars) {
33+
window.goatcounter = window.goatcounter.vars
34+
} else {
35+
window.goatcounter = window.goatcounter || {}
36+
}
37+
</script>
3138
</body>
3239
</html>

0 commit comments

Comments
 (0)