#10 issue/iso-file-serving #11

Merged
SethTrowbridge merged 2 commits from issue/iso-file-serving into master 2023-04-05 21:10:58 -04:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit a36cdc13c0 - Show all commits

View File

@ -12,7 +12,8 @@
"tasks": "tasks":
{ {
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx", "install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
"run": "deno run -A --unstable --no-lock server.tsx 4507", "run": "deno run -A --unstable --no-lock server.tsx",
"complete": "deno task run & cd example && pwd && deno task dev" "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"
} }
} }

View File

@ -116,6 +116,15 @@ try
console.log(`"imports" configuration does not alias an entry-point component with "@eno/app"`); 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 else
{ {