From e03418ecfde370b3a4fd2753c580b2a7d3c1c207 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sun, 29 Jan 2023 19:17:57 +0100 Subject: [PATCH] Add the module generator script to the documentation. --- docs/Page_EnvironmentSetup.html | 1 + docs/source/EnvironmentSetup.html | 1 + docs/static/script.js | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Page_EnvironmentSetup.html b/docs/Page_EnvironmentSetup.html index 5f00aba..2a1b6af 100644 --- a/docs/Page_EnvironmentSetup.html +++ b/docs/Page_EnvironmentSetup.html @@ -112,6 +112,7 @@ npm start
  • npm run build_dev: Builds the development version of the engine and the website.
  • npm run build_engine_dev: Builds the development version of the engine.
  • npm run build_engine_prod: Builds the production version of the engine.
  • +
  • npm run build_engine_module: Builds the ES6 module version of the engine. This is the main entry point when using the npm package.
  • npm run build_website_dev: Builds the development version of the website.
  • npm run build_website_prod: Builds the production version of the website.
  • diff --git a/docs/source/EnvironmentSetup.html b/docs/source/EnvironmentSetup.html index fd741a7..014393e 100644 --- a/docs/source/EnvironmentSetup.html +++ b/docs/source/EnvironmentSetup.html @@ -50,6 +50,7 @@ npm start
  • npm run build_dev: Builds the development version of the engine and the website.
  • npm run build_engine_dev: Builds the development version of the engine.
  • npm run build_engine_prod: Builds the production version of the engine.
  • +
  • npm run build_engine_module: Builds the ES6 module version of the engine. This is the main entry point when using the npm package.
  • npm run build_website_dev: Builds the development version of the website.
  • npm run build_website_prod: Builds the production version of the website.
  • diff --git a/docs/static/script.js b/docs/static/script.js index 924739c..4856eff 100644 --- a/docs/static/script.js +++ b/docs/static/script.js @@ -12,7 +12,7 @@ function Resize () navToggleDiv.style.display = 'block'; navDiv.style.display = 'none'; } else { - let navWidth = '300px'; + let navWidth = '320px'; navDiv.style.width = navWidth; mainDiv.style.marginLeft = navWidth;