summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/esm/main.js
blob: 3dfa8122ae41cae2d95bb78e32d576ea6be568dd (plain)
1
2
3
4
5
6
7
import chalk from "npm:chalk@5";

console.log(chalk.green("chalk esm loads"));

export function test(value) {
  return chalk.red(value);
}