gendocs.sh 473 B

12345678
  1. # Shortcut script that generates docs the same way that the CI script does. Works on OSX.
  2. cp Readme.md ../../Artifacts/Build/JSDoc
  3. cp -R atomic-theme ../../Artifacts/Build/JSDoc/
  4. cd ../../Artifacts/Build/JSDoc
  5. npm install [email protected]
  6. ./node_modules/.bin/typedoc --out out ../../../Script/TypeScript/dist/Atomic.d.ts --module commonjs --includeDeclarations --mode file --theme atomic-theme --name 'Atomic Game Engine' --readme ./Readme.md
  7. cp -R out/ ../EditorData/Docs