summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/runner.ts
blob: f12cc69b02906fa176a14f038966b7050e67bbcc (plain)
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);