mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 12:25:52 -04:00
790117d66a
* We now generate automatically reference pages for all the "official extensions" that are part of GDevelop. They are listing all the actions, conditions and expressions. * The page with all expressions was slightly improved too. * The page listing all the "community" extensions is now displaying icons and more details.
33 lines
625 B
Bash
Executable File
33 lines
625 B
Bash
Executable File
# Script launching the generation of the documentations of all modules
|
||
# Install globally doxgen before starting it.
|
||
set -e
|
||
|
||
echo Generating all docs...
|
||
mkdir -p ../docs
|
||
mkdir -p logs
|
||
cd ..
|
||
cd Core/docs
|
||
doxygen
|
||
echo ℹ️ Generated Core docs
|
||
cd ../..
|
||
cd GDJS/docs
|
||
doxygen
|
||
echo ℹ️ Generated GDJS docs
|
||
cd ../..
|
||
cd GDCpp/docs
|
||
doxygen
|
||
echo ℹ️ Generated GDCpp docs
|
||
cd ../..
|
||
cd GDJS
|
||
npm install
|
||
npm run generate-doc
|
||
echo ℹ️ Generated GDJS Runtime docs
|
||
cd ..
|
||
cd newIDE/app/scripts
|
||
npm install
|
||
node extract-extensions-document.js
|
||
node extract-reference-document.js
|
||
cd ../../..
|
||
echo ℹ️ Generated wiki docs
|
||
cd scripts
|