1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

lume: move to 3.0

This commit is contained in:
RGBCube 2025-05-29 01:19:31 +03:00
parent f49df20c46
commit 7974d7a806
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
15 changed files with 1142 additions and 4323 deletions

View file

@ -1,18 +1,24 @@
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:react",
"jsxImportSource": "lume",
"types": [
"lume/types.ts",
"https://unpkg.com/@types/react@18.2.37/index.d.ts"
"lume/types.ts"
]
},
"tasks": {
"build": "echo \"import 'lume/cli.ts'\" | deno run --allow-all -",
"serve": "deno task build --serve"
"lume": "echo \"import 'lume/cli.ts'\" | deno run --allow-all -",
"build": "deno task lume",
"serve": "deno task lume --serve"
},
"imports": {
"std/": "https://deno.land/std@0.217.0/",
"lume/": "https://deno.land/x/lume@v2.1.0/"
"lume/": "https://deno.land/x/lume@v3.0.2/",
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.9/jsx-runtime.ts"
},
"lint": {
"plugins": [
"https://deno.land/x/lume@v3.0.1/lint.ts"
]
}
}