chore(scripts/validateTags): log updates tags

This commit is contained in:
xHyroM 2022-07-16 14:31:12 +02:00
parent 8ac182a928
commit 89ff682211

View file

@ -1,4 +1,8 @@
const files = await Bun.file('./files.json').text();
console.log(files);
if (!files.includes('files/tags.toml')) process.exit(0);
// @ts-expect-error types
const tags = await import('./files/tags.toml');
console.log(tags);
export { };