-
Notifications
You must be signed in to change notification settings - Fork 5
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
c42f8a0
commit 28dd0aa
Showing
4 changed files
with
11 additions
and
7 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
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": [ | ||
|
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 |
---|---|---|
|
@@ -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"; | ||
|
||
|
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