1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/npm/dynamic_import/other.ts
Bartek Iwańczuk 5268fa0e0f
fix(unstable): various resolution bugs for npm: specifiers (#15546)
Co-authored-by: David Sherret <dsherret@gmail.com>
2022-08-24 14:54:20 +02:00

11 lines
264 B
TypeScript

console.log("B");
const chalk = (await import("npm:chalk@5")).default;
console.log(chalk.green("C"));
try {
// Trying to import a devDependency should result in an error
await import("xo");
} catch (e) {
console.error("devDependency import failed:", e);
}