Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 14, 2024
1 parent 7e50536 commit a296514
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Go to the `v1` branch to see the changelog of Lume 1.
- New plugin: `purgecss` to remove unused CSS. [#693]
- New middleware `router`.

### Fixed
- Updated deps: `sass`, `preact`, `xml` and some plugins.

## [2.4.3] - 2024-12-11
### Added
- New option `finalHandler` to `Server` class.
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
},
"update-deps": {
"description": "Update all dependencies to the latest version. Add `--dry-run` to don't write the changes",
"command": "deno task update deps/*.ts deno.json"
"command": "deno task update 'deps/*.ts' deno.json"
}
},
"imports": {
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/[email protected].4/"
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/[email protected].5/"
}
}
4 changes: 2 additions & 2 deletions deps/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const catalogs: Catalog[] = [
// https://react.fluentui.dev/?path=/docs/icons-catalog--docs
id: "fluent",
src:
"https://cdn.jsdelivr.net/npm/@fluentui/[email protected].267/icons/{name}_{variant}.svg",
"https://cdn.jsdelivr.net/npm/@fluentui/[email protected].269/icons/{name}_{variant}.svg",
variants: [
{ id: "outlined", path: "regular" },
"filled",
Expand All @@ -186,7 +186,7 @@ export const catalogs: Catalog[] = [
// https://primer.style/foundations/icons
id: "octicons",
src:
"https://cdn.jsdelivr.net/npm/@primer/octicons@19.13.0/build/svg/{name}-{variant}.svg",
"https://cdn.jsdelivr.net/npm/@primer/octicons@19.14.0/build/svg/{name}-{variant}.svg",
variants: ["24", "16", "12", "48", "96"],
},
{
Expand Down
8 changes: 4 additions & 4 deletions deps/preact.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as preact from "npm:[email protected].1";
export * as hooks from "npm:[email protected].1/hooks";
export { renderToString } from "npm:[email protected].11";
export const specifier = "npm:[email protected].1";
export * as preact from "npm:[email protected].2";
export * as hooks from "npm:[email protected].2/hooks";
export { renderToString } from "npm:[email protected].12";
export const specifier = "npm:[email protected].2";
4 changes: 2 additions & 2 deletions deps/purgecss.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "npm:purgecss@6.0.0";
export { default as purgeHtml } from "npm:purgecss-from-html@6.0.0/lib/purgecss-from-html.esm.js";
export * from "npm:purgecss@7.0.2";
export { default as purgeHtml } from "npm:purgecss-from-html@7.0.2/lib/purgecss-from-html.esm.js";
2 changes: 1 addition & 1 deletion deps/sass.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "npm:sass@1.82.0";
export * from "npm:sass@1.83.0";
2 changes: 1 addition & 1 deletion deps/xml.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@libs/[email protected].3";
export * from "https://deno.land/x/[email protected].4/mod.ts";

0 comments on commit a296514

Please sign in to comment.