deno/tests/specs/bench/preload_modules/main_bench.ts
Bartek Iwańczuk f6176a1674
feat: add support for --preload/--import flag (#29626)
This commit adds initial support for `--preload` (aliased to `--import`)
flag that allows to load and execute multiple ES modules before the
entry point modules is executed.

This command is available in `deno run`, `deno test` and `deno bench`
subcommands.

Closes https://github.com/denoland/deno/issues/29776
2025-07-01 16:21:00 +05:30

7 lines
343 B
TypeScript

// @ts-ignore These are provided by the preload scripts, but we don't provide typings for them
console.log("Value of __preload__", globalThis.__preload__);
// @ts-ignore These are provided by the preload scripts, but we don't provide typings for them
console.log("Value of __import__", globalThis.__import__);
Deno.bench("hello", () => {
});