summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/vendor/dynamic_non_existent.ts
blob: a48e2accb0669de24750e128c334e2ab56e80c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
// this should still vendor
// deno-lint-ignore no-constant-condition
if (false) {
  await import("./non-existent.js");
}

export class Logger {
  log(text: string) {
    console.log(text);
  }
}