summaryrefslogtreecommitdiff
path: root/tests/specs/install/alias_invalid_path_char/verify.ts
blob: 497e1d8dd9561a804eeaf6f3e8e38b71f63b8b47 (plain)
1
2
3
4
5
6
7
8
9
10
const entries = Array.from(
  Deno.readDirSync(new URL("./node_modules", import.meta.url)),
);
const names = entries.map((entry) => entry.name);
names.sort();

// won't have the invalid path alias
for (const name of names) {
  console.log(name);
}