Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Aug 30, 2024
1 parent c42f8a0 commit 28dd0aa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ This version only works from Lume 1.3.
- The default value of `date` was `Git Last Modified`.
It was removed because affects the performance in large sites.

### Fixed
- Updated dependencies.

## [0.9.3] - 2024-08-12
### Added
- Settings to CMS to configure a default extra_head and language.
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"imports": {
"lume/": "https://deno.land/x/[email protected]/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.5.10/"
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.5.10/"
},
"lock": false,
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"cms": "deno task lume cms",
"update-deps": "deno run -A 'https://deno.land/x/[email protected]/cli.ts' update deno.json"
"update-deps": "deno run -A 'https://deno.land/x/[email protected]/cli.ts' update deno.json plugins.ts"
},
"compilerOptions": {
"types": [
Expand Down
8 changes: 4 additions & 4 deletions plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ import postcss from "lume/plugins/postcss.ts";
import pagefind from "lume/plugins/pagefind.ts";
import resolveUrls from "lume/plugins/resolve_urls.ts";
import nav from "lume/plugins/nav.ts";
import title from "https://deno.land/x/[email protected].0/title.ts";
import toc from "https://deno.land/x/[email protected].0/toc.ts";
import footnotes from "https://deno.land/x/[email protected].0/footnotes.ts";
import title from "https://deno.land/x/[email protected].1/title.ts";
import toc from "https://deno.land/x/[email protected].1/toc.ts";
import footnotes from "https://deno.land/x/[email protected].1/footnotes.ts";
import prism from "lume/plugins/prism.ts";
import date from "lume/plugins/date.ts";
import basePath from "lume/plugins/base_path.ts";
import favicon, { Options as FaviconOptions } from "lume/plugins/favicon.ts";
import phosphor, {
Options as IconOptions,
} from "https://deno.land/x/[email protected]/phosphor.ts";
import { alert } from "npm:@mdit/plugin-alert@0.8.0";
import { alert } from "npm:@mdit/plugin-alert@0.13.1";

import "lume/types.ts";

Expand Down
3 changes: 2 additions & 1 deletion src/folder/first-note.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ Here is a footnote reference,[^1] and [^2]another. And this[^3] is a long note.

[^3]: Here's one with multiple blocks.

Subsequent paragraphs are indented (4 spaces) to show that they belong to the previous footnote.
Subsequent paragraphs are indented (4 spaces) to show that they belong to
the previous footnote.

> [!tip]
>
Expand Down

0 comments on commit 28dd0aa

Please sign in to comment.