mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
8 lines
239 B
TypeScript
8 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);
|