misskey/packages/frontend/.storybook/changes.ts
Acid Chicken (硫酸鶏) 10e9604649
fix: syntax
2023-04-06 22:30:36 +09:00

24 lines
716 B
TypeScript

import fs from 'node:fs/promises';
import path from 'node:path';
fs.readFile(path.resolve(__dirname, '../storybook-static/preview-stats.json'))
.then((buffer) => {
const stats = JSON.parse(buffer.toString());
const modules = new Set(process.argv.slice(2).map((arg) => path.resolve(__dirname, '..', arg)));
for (;;) {
const oldSize = modules.size;
for (const module of Array.from(modules)) {
if (stats.modules[module]) {
for (const reason of stats.modules[module].reasons) {
modules.add(reason.moduleName);
}
}
}
if (modules.size === oldSize) {
break;
}
}
for (const file of Array.from(modules)) {
process.stdout.write(` --only-story-files ${file}`);
}
})