This guide provides instructions for setting up the development environment for the OSRS quest data npm module.
Before proceeding, ensure you have the following prerequisites installed on your system:
-
Clone the repository:
git clone https://github.com/jamescer/osrs-tools.git
-
Navigate to the project directory:
cd osrs-tools -
Install dependencies:
npm install
To build the npm module and generate distribution files, run the following command:
npm run buildThis project uses changesets to track changes and generate CHANGELOG.md. When you make a user-facing change:
npm run changesetThis prompts for the affected bump type (patch/minor/major) and a summary, and writes a changeset file to .changeset/ — commit it alongside your change. When it's time to cut a release, npm run changeset:version consumes the pending changesets, bumps the version in package.json, and updates CHANGELOG.md.