We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 919b8eb commit b2ddbdaCopy full SHA for b2ddbda
scripts/publint.js
@@ -25,10 +25,10 @@ function publint(path) {
25
26
async function publintAll() {
27
let hasError = false;
28
- await publint('./').catch(() => {
29
- hasError = true;
30
- });
31
for (const packagePath of await readdir('./packages')) {
+ if (packagePath.startsWith('.')) {
+ continue;
+ }
32
await publint(`./packages/${packagePath}`).catch(() => {
33
hasError = true;
34
});
0 commit comments