Add the module generator script to the documentation.

This commit is contained in:
kovacsv 2023-01-29 19:17:57 +01:00
parent 57aaea5507
commit e03418ecfd
3 changed files with 3 additions and 1 deletions

View File

@ -112,6 +112,7 @@ npm start</code></pre>
<li><code class="inline">npm run build_dev</code>: Builds the development version of the engine and the website.</li>
<li><code class="inline">npm run build_engine_dev</code>: Builds the development version of the engine.</li>
<li><code class="inline">npm run build_engine_prod</code>: Builds the production version of the engine.</li>
<li><code class="inline">npm run build_engine_module</code>: Builds the ES6 module version of the engine. This is the main entry point when using the npm package.</li>
<li><code class="inline">npm run build_website_dev</code>: Builds the development version of the website.</li>
<li><code class="inline">npm run build_website_prod</code>: Builds the production version of the website.</li>
</ul>

View File

@ -50,6 +50,7 @@ npm start</code></pre>
<li><code class="inline">npm run build_dev</code>: Builds the development version of the engine and the website.</li>
<li><code class="inline">npm run build_engine_dev</code>: Builds the development version of the engine.</li>
<li><code class="inline">npm run build_engine_prod</code>: Builds the production version of the engine.</li>
<li><code class="inline">npm run build_engine_module</code>: Builds the ES6 module version of the engine. This is the main entry point when using the npm package.</li>
<li><code class="inline">npm run build_website_dev</code>: Builds the development version of the website.</li>
<li><code class="inline">npm run build_website_prod</code>: Builds the production version of the website.</li>
</ul>

View File

@ -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;