@@ -4,10 +4,10 @@ A minimalist, site-only GitHub template designed for rapid deployment of static
44
55## Features
66
7- * ** Zero-Config Build:** Uses pure Node.js (` fs ` , ` terser ` , ` clean-css ` ) for asset processing—no Webpack, Parcel, or Gulp needed.
8- * ** Asset Bundling:** Concatenates and minifies all source JavaScript and CSS into single files (` script.js ` , ` style.css ` ).
9- * ** Automatic Setup:** Configured with ` npm ci ` and Codespace settings to be ready to run instantly.
10- * ** Integrated Server:** Built-in development server runs on port ** 4920** for immediate testing of the build output.
7+ - ** Zero-Config Build:** Uses pure Node.js (` fs ` , ` terser ` , ` clean-css ` ) for asset processing—no Webpack, Parcel, or Gulp needed.
8+ - ** Asset Bundling:** Concatenates and minifies all source JavaScript and CSS into single files (` script.js ` , ` style.css ` ).
9+ - ** Automatic Setup:** Configured with ` npm ci ` and Codespace settings to be ready to run instantly.
10+ - ** Integrated Server:** Built-in development server runs on port ** 4920** for immediate testing of the build output.
1111
1212---
1313
@@ -30,7 +30,7 @@ Development work happens exclusively inside the **`src/`** directory. The `npm r
3030├── serve.js \# Development server logic
3131└── clean.js \# Cleanup script
3232
33- ````
33+ ```
3434
3535---
3636
@@ -43,18 +43,18 @@ If you are using **GitHub Codespaces**, dependencies are installed and the proje
4343``` bash
4444# Install dependencies (terser, clean-css, glob)
4545npm install
46- ````
46+ ```
4747
4848### 2\. ** Available Scripts**
4949
5050Use these commands from your terminal to manage your project:
5151
52- | Command | Action | Description |
53- | :--- | :--- | :--- |
54- | `npm run clean` | `node clean.js` | **Deletes** the entire `/dist` directory. |
55- | `npm run build` | `npm run clean && node build.js` | Runs a clean, then **builds and minifies** all assets into the `/dist` folder. |
56- | `npm start` | `npm run build && node serve.js` | Runs the build, then **starts the development server** on `http://localhost:4920`. |
57- | `npm run dev` | Alias for `npm start`. | The recommended command for development. |
52+ | Command | Action | Description |
53+ | :-------------- | :------------------------------- | :------------------------------------------------------------------------------ --- |
54+ | ` npm run clean ` | ` node clean.js ` | ** Deletes** the entire ` /dist ` directory. |
55+ | ` npm run build ` | ` npm run clean && node build.js ` | Runs a clean, then ** builds and minifies** all assets into the ` /dist ` folder. |
56+ | ` npm start ` | ` npm run build && node serve.js ` | Runs the build, then ** starts the development server** on ` http://localhost:4920 ` . |
57+ | ` npm run dev ` | Alias for ` npm start ` . | The recommended command for development. |
5858
5959### 3\. ** Development**
6060
0 commit comments