1 2 3 4 5 6 7
// 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);