upgrade lume
Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
33bf747902
commit
198d519fc9
5 changed files with 1426 additions and 7 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
User-Agent: *
|
||||
Disallow:
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue