blob: 7c7ee7d5576a3a288983a4cb125da7d02db05df1 (
plain)
1
2
3
4
5
6
7
|
import chalk from "npm:chalk@5";
console.log(chalk.green("Starting..."));
// non-analyzable
const importName = "./other.ts";
await import(importName);
console.log(chalk.green("Finished..."));
|