Skip to content

Commit

Permalink
fix generate-meta.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiez committed Nov 29, 2024
1 parent f818efc commit cd22c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/generate-meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
import { generateMetaForRule, listRulesDir } from './helpers.js';

(await listRulesDir()).forEach(async file => {
for (const file of await listRulesDir()) {
await generateMetaForRule(file);
});
}

await import('./generate-rule-indexes.js');

0 comments on commit cd22c36

Please sign in to comment.