blob: 0096bca4858bfc92ce78d4c74d73d299a64a26f4 (
plain)
1
2
3
4
5
6
7
8
9
|
import chalk from "npm:chalk";
console.log(chalk.green("Hi"));
try {
await import("npm:@denotest/dep-cannot-parse");
} catch (err) {
console.log(err);
}
console.log(chalk.green("Bye"));
|