from "https://deno.land/x/dejs@0.3.3/mod.ts"; export * as fs from "https://deno.land/std@v0.20.0/fs/mod.ts"; example.ts import { dejs } from "./deps.ts"; const body = await dejs.render(` ... deps.ts を更新すれば、 dejs , fs を使っている全ファイル内のmodule version が更新されることになります。
下記の例では、 fs/path.ts へのエイリアスを作成しています example.ts import * as path from './vendor/https/deno.land/std/fs/path.ts'; console.log(path.join(Deno.cwd(), 'example')); Resolve module files used in project. $ dem ensure successfully created alias: https://deno.land/std@v0.15.0/fs/path.ts