We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f1fd6 commit e324bd5Copy full SHA for e324bd5
docs-viewer/package.json
@@ -8,7 +8,8 @@
8
"src"
9
],
10
"bin": {
11
- "preview-api-docs": "./src/preview-docs.ts"
+ "preview-api-docs": "./src/preview-docs.ts",
12
+ "rebuild-api-docs": "./src/rebuild-docs.ts"
13
},
14
"dependencies": {
15
"@types/bun": "^1.2.4",
docs-viewer/src/rebuild-docs.ts
@@ -0,0 +1,9 @@
1
+#! /usr/bin/env bun
2
+
3
+/**
4
+ * Rebuilds the data used by the docs viewer app
5
+ */
6
7
+async function main();
+main();
0 commit comments