forked from pub-solar/pub.solar
Benjamin Bädorf
a047e8ae24
The build was failing because old dependencies of lume 1.12 were not available in the registries anymore. This commit updates lume and its plugins.
15 lines
412 B
JSON
15 lines
412 B
JSON
{
|
|
"importMap": "import_map.json",
|
|
"tasks": {
|
|
"lume:fresh": "echo \"import 'lume/cli.ts'\" | deno run --lock-write --unstable -A -",
|
|
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
|
|
"build": "deno task lume",
|
|
"build:fresh": "deno task lume:fresh",
|
|
"serve": "deno task lume -s"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "npm:react"
|
|
}
|
|
}
|