mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
import { createRequire } from "node:module";
|
|
const file = Deno.args[0];
|
|
if (!file) {
|
|
throw new Error("No file provided");
|
|
}
|
|
createRequire(import.meta.url)(file);
|