chore: detect changes manually

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-04-06 22:25:40 +09:00
parent b027170d75
commit a46176c56d
3 changed files with 33 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
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}`);
}
})

View File

@@ -18,5 +18,10 @@
"jsx": "react",
"jsxFactory": "h"
},
"files": ["./generate.tsx", "./preload-locale.ts", "./preload-theme.ts"]
"files": [
"./changes.ts",
"./generate.tsx",
"./preload-locale.ts",
"./preload-theme.ts"
]
}