We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261069a commit 603c70fCopy full SHA for 603c70f
scripts/build-typedoc.js
@@ -2,6 +2,7 @@ import path from 'node:path';
2
import { create } from 'browser-sync';
3
import watch from 'node-watch';
4
import { Application } from 'typedoc';
5
+import report from './report.mjs';
6
7
const browserSync = create();
8
const ROOT = path.join.bind(null, path.resolve('./'));
@@ -137,4 +138,9 @@ async function main() {
137
138
}
139
140
-main().catch(console.error);
141
+try {
142
+ await main();
143
+} catch (e) {
144
+ report.error(e);
145
+ process.exit(1);
146
+}
0 commit comments