Merge pull request 'flake: bump inputs, pin markdown-it dependency' (!29) from chore/update-flake into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #29
Reviewed-by: b12f <b12f@noreply.git.pub.solar>
This commit is contained in:
teutat3s 2024-06-09 17:50:29 +00:00
commit 46563ca6b5
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873
7 changed files with 518 additions and 571 deletions

View file

@ -8,7 +8,7 @@ steps:
event:
- push
- pull_request
image: denoland/deno:alpine-1.41.3
image: denoland/deno:alpine-1.43.6
commands:
- deno task build

View file

@ -1,4 +1,4 @@
FROM denoland/deno:alpine-1.41.3
FROM denoland/deno:alpine-1.43.6
WORKDIR /site
COPY . .

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"
]
}
}

1037
deno.lock

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
import MarkdownIt from "https://jspm.dev/markdown-it";
import MarkdownIt from "markdown-it";
const mdIt = new MarkdownIt({
html: true, // Enable HTML tags in source

View file

@ -5,11 +5,11 @@
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1712014858,
"narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=",
"lastModified": 1717285511,
"narHash": "sha256-iKzJcpdXih14qYVcZ9QC9XuZYnPc6T8YImb6dX166kw=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "9126214d0a59633752a136528f5f3b9aa8565b7d",
"rev": "2a55567fcf15b1b1c7ed712a2c6fadaec7412ea8",
"type": "github"
},
"original": {
@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1712608508,
"narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=",
"lastModified": 1717602782,
"narHash": "sha256-pL9jeus5QpX5R+9rsp3hhZ+uplVHscNJh8n8VpqscM0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6",
"rev": "e8057b67ebf307f01bdcc8fba94d94f75039d1f6",
"type": "github"
},
"original": {
@ -36,20 +36,14 @@
},
"nixpkgs-lib": {
"locked": {
"dir": "lib",
"lastModified": 1711703276,
"narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "d8fe5e6c92d0d190646fb9f1056741a229980089",
"type": "github"
"lastModified": 1717284937,
"narHash": "sha256-lIbdfCsf8LMFloheeE6N31+BMIeixqyQWbSr2vk79EQ=",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz"
},
"original": {
"dir": "lib",
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz"
}
},
"root": {

View file

@ -1,7 +1,8 @@
{
"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",
"markdown-it": "https://jspm.dev/markdown-it@13.0.2"
}
}