blob: 56803fad4437b292f33f134b33b36491a76144d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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);
}
|