mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
4bc96c5d2a
* https://github.com/denoland/deno_npm/pull/57 * https://github.com/denoland/deno_graph/pull/498 Closes https://github.com/denoland/deno/issues/17802
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
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"));
|