-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e76d8e
commit fe1d310
Showing
4 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"imports": { | ||
"lume/": "https://deno.land/x/lume@v2.2.2/", | ||
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.5.2/" | ||
"lume/": "https://deno.land/x/lume@v2.3.3/", | ||
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.7.0/" | ||
}, | ||
"tasks": { | ||
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -", | ||
"build": "deno task lume", | ||
"serve": "deno task lume -s", | ||
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected].4/cli.ts' update plugins.ts deno.json" | ||
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected].8/cli.ts' update plugins.ts deno.json" | ||
}, | ||
"compilerOptions": { | ||
"types": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,10 @@ import sitemap from "lume/plugins/sitemap.ts"; | |
import feed, { Options as FeedOptions } from "lume/plugins/feed.ts"; | ||
import readingInfo from "lume/plugins/reading_info.ts"; | ||
import { merge } from "lume/core/utils/object.ts"; | ||
import toc from "https://deno.land/x/[email protected].0/toc.ts"; | ||
import image from "https://deno.land/x/[email protected].0/image.ts"; | ||
import footnotes from "https://deno.land/x/[email protected].0/footnotes.ts"; | ||
import { alert } from "npm:@mdit/plugin-alert@0.12.0"; | ||
import toc from "https://deno.land/x/[email protected].1/toc.ts"; | ||
import image from "https://deno.land/x/[email protected].1/image.ts"; | ||
import footnotes from "https://deno.land/x/[email protected].1/footnotes.ts"; | ||
import { alert } from "npm:@mdit/plugin-alert@0.13.1"; | ||
|
||
import "lume/types.ts"; | ||
|
||
|