flake: bump inputs, pin markdown-it dependency #29

Merged
teutat3s merged 4 commits from chore/update-flake into main 2024-06-09 17:50:29 +00:00
3 changed files with 463 additions and 541 deletions
Showing only changes of commit 293aae65d5 - Show all commits

View file

@ -1,14 +1,17 @@
{
"importMap": "import_map.json",
"tasks": {
"lume:fresh": "echo \"import 'lume/cli.ts'\" | deno run --lock-write --lock=deno.lock --unstable -A -",
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"lume:fresh": "echo \"import 'lume/cli.ts'\" | deno run --lock-write --lock=deno.lock -A -",
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"build:fresh": "deno task lume:fresh",
"serve": "deno task lume -s"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:react"
"jsxImportSource": "npm:react",
"types": [
"lume/types.ts"
]
}
}

989
deno.lock

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.0.1/",
"react/jsx-runtime": "https://deno.land/x/lume@v2.0.1/deps/react_runtime.ts",
"react": "https://deno.land/x/lume@v2.0.1/deps/react.ts"
"lume/": "https://deno.land/x/lume@v2.2.1/",
"react/jsx-runtime": "https://deno.land/x/lume@v2.2.1/deps/react_runtime.ts",
"react": "https://deno.land/x/lume@v2.2.1/deps/react.ts"
}
}