chore: prep 2.0.0-beta1 release

This commit is contained in:
Peter Steinberger
2025-12-19 18:02:30 +01:00
parent ba497ce57d
commit 377169959d
5 changed files with 26 additions and 11 deletions

View File

@@ -4,6 +4,13 @@ import { readdirSync, readFileSync } from 'node:fs';
import { dirname, join, relative } from 'node:path';
import { fileURLToPath } from 'node:url';
process.stdout.on('error', (error) => {
if ((error as NodeJS.ErrnoException).code === 'EPIPE') {
process.exit(0);
}
throw error;
});
const docsListFile = fileURLToPath(import.meta.url);
const docsListDir = dirname(docsListFile);
const DOCS_DIR = join(docsListDir, '..', 'docs');