mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
14 lines
403 B
TypeScript
14 lines
403 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import "./polyfill_globals.js";
|
|
import { createRequire } from "node:module";
|
|
import { toFileUrl } from "@std/path/to-file-url";
|
|
const file = Deno.args[0];
|
|
if (!file) {
|
|
throw new Error("No file provided");
|
|
}
|
|
|
|
if (file.endsWith(".mjs")) {
|
|
await import(toFileUrl(file).href);
|
|
} else {
|
|
createRequire(import.meta.url)(file);
|
|
}
|