Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 713 Bytes

BUILDING.md

File metadata and controls

50 lines (32 loc) · 713 Bytes

Building OpenAPI Generator Plus

Setup

This project uses nvm for managing the versions of node, and pnpm for installing packages and managing the monorepo project structure.

nvm

Use the one-line installation on the nvm website.

pnpm

Install pnpm using npm:

npm -g install pnpm

Building

Install and use the right node version:

nvm install
nvm use

Install the dependencies:

pnpm install

Build the project:

pnpm build

Run a build-watch while developing:

pnpm watch

Test the project:

pnpm test