pin new versions #13
10
checker.tsx
10
checker.tsx
@ -167,10 +167,10 @@ export async function Check()
|
|||||||
const importMap = imports.json.imports as Record<string, string>;
|
const importMap = imports.json.imports as Record<string, string>;
|
||||||
const bake =async(obj:ConfigCheck)=> await Deno.writeTextFile(Deno.cwd()+"/"+obj.path, JSON.stringify(obj.json, null, "\t"));
|
const bake =async(obj:ConfigCheck)=> await Deno.writeTextFile(Deno.cwd()+"/"+obj.path, JSON.stringify(obj.json, null, "\t"));
|
||||||
|
|
||||||
importMap["react"] = `https://esm.sh/preact@10.18.1/compat`;
|
importMap["react"] = `https://esm.sh/preact@10.20.2/compat`;
|
||||||
importMap["react/"] = `https://esm.sh/preact@10.18.1/compat/`;
|
importMap["react/"] = `https://esm.sh/preact@10.20.2/compat/`;
|
||||||
importMap["@preact/signals"] = `https://esm.sh/@preact/signals@1.2.1`;
|
importMap["@preact/signals"] = `https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2`;
|
||||||
importMap["@twind/core"] = `https://esm.sh/@twind/core@1.1.3`;
|
importMap["@twind/core"] = `https://esm.sh/v126/@twind/core@1.1.3/es2022/core.mjs`;
|
||||||
importMap[">able/"] = `${RootHost}`;
|
importMap[">able/"] = `${RootHost}`;
|
||||||
if(!importMap[">able/app.tsx"])
|
if(!importMap[">able/app.tsx"])
|
||||||
{
|
{
|
||||||
@ -200,7 +200,7 @@ export async function Check()
|
|||||||
{
|
{
|
||||||
"lib": ["deno.window", "dom", "dom.iterable", "dom.asynciterable"],
|
"lib": ["deno.window", "dom", "dom.iterable", "dom.asynciterable"],
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"jsxImportSource": "react"
|
"jsxImportSource": importMap["react"]
|
||||||
}
|
}
|
||||||
const optionsCurrent = config.json.compilerOptions as Record<string, string|string[]> || {};
|
const optionsCurrent = config.json.compilerOptions as Record<string, string|string[]> || {};
|
||||||
//const compLib:string[] = compOpts.lib as string[] || [];
|
//const compLib:string[] = compOpts.lib as string[] || [];
|
||||||
|
14
deno.jsonc
14
deno.jsonc
@ -1,11 +1,13 @@
|
|||||||
{
|
{
|
||||||
"imports": {
|
"imports": {
|
||||||
"react": "https://esm.sh/preact@10.18.1/compat",
|
|
||||||
"react-original": "https://esm.sh/preact@10.18.1/compat",
|
"react": "https://esm.sh/preact@10.20.2/compat",
|
||||||
"react/": "https://esm.sh/preact@10.18.1/compat/",
|
"react-original": "https://esm.sh/preact@10.20.2/compat",
|
||||||
"@preact/signals": "https://esm.sh/@preact/signals@1.2.1",
|
"react/": "https://esm.sh/preact@10.20.2/compat/",
|
||||||
"signals-original": "https://esm.sh/@preact/signals@1.2.1",
|
"@preact/signals": "https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2",
|
||||||
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
|
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
|
||||||
|
|
||||||
|
|
||||||
">able/": "./",
|
">able/": "./",
|
||||||
">able/app.tsx": "./app.tsx"
|
">able/app.tsx": "./app.tsx"
|
||||||
},
|
},
|
||||||
@ -19,7 +21,7 @@
|
|||||||
},
|
},
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"jsxImportSource": "react",
|
"jsxImportSource": "https://esm.sh/preact@10.20.2/compat",
|
||||||
"lib": [
|
"lib": [
|
||||||
"deno.window",
|
"deno.window",
|
||||||
"dom",
|
"dom",
|
||||||
|
Loading…
Reference in New Issue
Block a user