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;