upgrade lume

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-12-05 16:37:23 +01:00
parent 33bf747902
commit 198d519fc9
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
5 changed files with 1426 additions and 7 deletions

View File

@ -1,12 +1,12 @@
{
"importMap": "import_map.json",
"tasks": {
"lume": "deno eval \"import 'lume/task.ts'\" --",
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
"jsxImportSource": "npm:preact"
}
}

1416
deno.lock Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v1.12.0/",
"preact/jsx-runtime": "https://deno.land/x/lume@v1.11.4/deps/preact_runtime.ts",
"preact": "https://deno.land/x/lume@v1.11.4/deps/preact.ts"
"lume/": "https://deno.land/x/lume@v1.13.2/",
"preact/jsx-runtime": "https://deno.land/x/lume@v1.13.2/deps/preact_runtime.ts",
"preact": "https://deno.land/x/lume@v1.13.2/deps/preact.ts"
}
}

View File

@ -1,2 +0,0 @@
User-Agent: *
Disallow:

View File

@ -1,5 +1,10 @@
$primary-color: #000;
body, html {
min-width: 100%;
min-height: 100%;
}
body {
background-color: #000000;
color: rgba(255, 255, 255, 1);