Compare commits

..

No commits in common. "a36cdc13c0c65afd57b6b0ed2e6f4078ecd34b0b" and "d9bc3901a099efbce8f155a54b4f2cec270bca7b" have entirely different histories.

5 changed files with 13 additions and 35 deletions

View File

@ -6,14 +6,13 @@
"react": "https://esm.sh/preact@10.13.2/compat",
"react-original": "https://esm.sh/preact@10.13.2/compat",
"@eno/app": "./example/app.tsx",
"@eno/iso": "./lib/iso.tsx"
"@eno/app": "./example/app.tsx"
},
"tasks":
{
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
"run": "deno run -A --unstable --no-lock server.tsx",
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts",
"complete": "deno task host & cd example && pwd && deno task dev"
"complete": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts & cd example && pwd && deno task dev",
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts"
}
}

View File

@ -2,11 +2,9 @@ import TWPreTail from "https://esm.sh/@twind/preset-tailwind@1.1.4";
import TWPreAuto from "https://esm.sh/@twind/preset-autoprefix@1.0.7";
import React from "react";
import Component from "./deep/component.tsx";
import * as Iso from "@eno/iso";
export default ()=>
{
console.log(Iso.Meta);
const [countGet, countSet] = React.useState(1);
return <div class="p-4 font-sans">
<h1 class="my-2 font(bold serif) text(2xl)">Title!!</h1>

View File

@ -3,10 +3,9 @@
{
"react": "https://esm.sh/preact@10.13.2/compat",
"@deep/": "./deep/",
"@eno/app": "./app.tsx",
"@eno/iso": "http://localhost:4507/lib/iso.tsx"
"@eno/app": "./app.tsx"
},
"tasks": {
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock --config=deno.json 'http://localhost:4507/server.tsx?reload=1'"
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock --config=deno.json http://localhost:4507/server.tsx"
}
}

View File

@ -1,10 +0,0 @@
import React from "react";
type Metas = {
Title?:string,
Description?:string
};
export const Meta:Metas = {
Title:"hey"
};

View File

@ -2,8 +2,7 @@ import * as ESBuild from 'https://deno.land/x/esbuild@v0.14.45/mod.js';
import * as MIME from "https://deno.land/std@0.180.0/media_types/mod.ts";
import { debounce } from "https://deno.land/std@0.151.0/async/debounce.ts";
import SSR from "https://esm.sh/v113/preact-render-to-string@6.0.2";
import * as Twind from "https://esm.sh/@twind/core@1.1.3";
import React, {JSX, createElement as h} from "react";
import React, {createElement as h} from "react";
const Transpiled = new Map();
const Transpileable =(inFilePath:string):boolean=>
@ -116,15 +115,6 @@ try
console.log(`"imports" configuration does not alias an entry-point component with "@eno/app"`);
}
const importIso = ImportObject.imports["@eno/iso"];
if(importIso)
{
ImportObject.imports["@eno/iso"] = `./${LibPath}/iso.tsx`;
}
else
{
}
}
else
{
@ -137,8 +127,12 @@ catch(e)
console.log(`deno.json not found`);
}
import {default as App, CSS} from "@eno/app";
import * as Twind from "https://esm.sh/@twind/core@1.1.3";
const TwindInst = Twind.install(CSS);
Deno.serve({ port: Deno.args[0]||3000 }, async(_req:Request) =>
Deno.serve({ port: 3000 }, async(_req:Request) =>
{
const url:URL = new URL(_req.url);
const fsPath = Deno.cwd()+url.pathname;
@ -253,7 +247,7 @@ FileListen("${url.pathname}", reloadHandler);`;
</html>`;
}
return new Response(body, {headers:{"content-type":type as string, "Access-Control-Allow-Origin":"*"}});
return new Response(body, {headers:{"content-type":type as string}});
}
catch(error)
{
@ -262,8 +256,6 @@ FileListen("${url.pathname}", reloadHandler);`;
}
});
import App, {CSS} from "@eno/app";
const TwindInst = Twind.install(CSS);
const Sockets:Set<WebSocket> = new Set();
const SocketsBroadcast =(inData:string)=>{ for (const socket of Sockets){ socket.send(inData); } }
@ -285,7 +277,7 @@ const ProcessFiles =debounce(async()=>
}
else
{
Transpiled.delete(key);
Transpiled.delete(key)
}
}
FilesChanged.clear();