webamp/packages/webamp-docs
Jordan Eldredge 8425adaeff
Upgrade node 22 lts (#1305)
* Upgrade Node.js to v22 LTS across the entire repo

- Update CI workflows (.github/workflows/ci.yml, code-size.yml) to use Node.js 22.x
- Update Netlify config to use Node.js 22.11.0
- Update all package.json engines to require Node.js 22.0.0+
- Add .nvmrc file with Node.js 22 for local development
- Update documentation to reflect Node.js 22+ requirement
- Update skin-database scripts to use Node.js 22
- Tested locally with nvm and confirmed builds work correctly

Node.js v22 is the current LTS version and provides improved performance
and security features. All packages now require Node.js 22+ to ensure
consistency across development, CI, and production environments.

* Don't update node version here
2025-07-07 10:30:13 -07:00
..
blog Add docs site 2025-06-18 23:43:23 -07:00
docs Move butterchurn loader docs to bundle size guide 2025-07-04 19:10:02 -07:00
src Add Milkdrop to docs example 2025-07-04 19:44:47 -07:00
static Docs improvements 2025-06-22 20:32:36 -07:00
.gitignore Add docs site 2025-06-18 23:43:23 -07:00
docusaurus.config.ts Set new docs domain 2025-06-19 00:17:59 -07:00
package.json Upgrade node 22 lts (#1305) 2025-07-07 10:30:13 -07:00
README.md Migrate from yarn to pnpm (#1303) 2025-07-06 15:45:44 -07:00
sidebars.ts Add docs site 2025-06-18 23:43:23 -07:00
tsconfig.json Add docs site 2025-06-18 23:43:23 -07:00

Website

This website is built using Docusaurus, a modern static website generator.

Installation

pnpm

Local Development

pnpm start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

pnpm build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Using SSH:

USE_SSH=true pnpm deploy

Not using SSH:

GIT_USER=<Your GitHub username> pnpm deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.