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

console.log(chalk.green("chalk import map loads"));

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