23 lines
522 B
TypeScript
23 lines
522 B
TypeScript
import * as mod from "https://deno.land/std@0.185.0/path/mod.ts";
|
|
import { doSomethingElse } from './a.tsx';
|
|
|
|
export function doSomething() {
|
|
|
|
const pathInit = Deno.mainModule;
|
|
|
|
const pathProj = mod.toFileUrl(Deno.cwd());
|
|
|
|
console.log(pathInit);
|
|
console.log(import.meta.url);
|
|
|
|
console.log(pathInit.split(pathProj));
|
|
|
|
console.log("b main?", Deno.mainModule);
|
|
console.log("deno main?", Deno.cwd());
|
|
|
|
|
|
Deno.env.set("b", "called");
|
|
console.log("b action");
|
|
doSomethingElse();
|
|
}
|