Skip to content

Commit b2ddbda

Browse files
committed
ci: fix publint
1 parent 919b8eb commit b2ddbda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/publint.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ function publint(path) {
2525

2626
async function publintAll() {
2727
let hasError = false;
28-
await publint('./').catch(() => {
29-
hasError = true;
30-
});
3128
for (const packagePath of await readdir('./packages')) {
29+
if (packagePath.startsWith('.')) {
30+
continue;
31+
}
3232
await publint(`./packages/${packagePath}`).catch(() => {
3333
hasError = true;
3434
});

0 commit comments

Comments
 (0)