TOOLS: Update doc.sh (#2331)

* TOOLS: Update doc.sh

* Update as suggested
This commit is contained in:
catloversg
2025-10-02 02:37:04 +07:00
committed by GitHub
parent f9a6cc841e
commit 66a5c9568b

View File

@@ -1,9 +1,5 @@
#!/bin/bash
echo "Bundling ingame documentation..."
node tools/bundle-doc/index.js
echo ""
echo "Using API Extractor to generate mappings for Netscript API definitions..."
npx api-extractor run
@@ -15,7 +11,14 @@ echo ""
echo "Running cleanup tasks..."
rm input/bitburner.api.json && rm -r input
echo ""
echo "Bundling ingame documentation..."
node tools/bundle-doc/index.js
echo ""
echo "Add generated docs to git..."
# This git add is needed due to documenter using wrong line endings. Console spam discarded.
git add markdown/ 2> /dev/null && git add tsdoc-metadata.json 2> /dev/null
echo ""
echo "Documentation build completed."