From 677c6ae127aa885bd4cb9a83f95180a655a8623b Mon Sep 17 00:00:00 2001 From: Kim Mantas Date: Tue, 5 Dec 2023 20:56:31 +0000 Subject: [PATCH] Remove lingering references to gulp in documentation. --- CONTRIBUTING.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1849d429a2..c84e71798f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ Please ensure there is an open issue about whatever contribution you are submitt Cloning this repository and either placing it in or symlinking it to your `Data/systems/dnd5e` user data directory is all that is necessary to run this within Foundry VTT. However, if you want to make changes to either the LESS stylesheets or the compendia, there are some developer tools which will make your life easier. -This repository leverages [gulp](https://gulpjs.com/) to run automated build tasks. If your system supports `npm`, you can run the following commands from the root of the project to get set up: +If your system supports `npm`, you can run the following commands from the root of the project to get set up: ### `npm install` @@ -41,7 +41,6 @@ Compile the source JSON files into compendium packs. ```text npm run build:db -gulp compilePacks ``` - `npm run build:db` - Compile all JSON files into their NEDB files. @@ -53,7 +52,6 @@ Extract the contents of compendium packs to JSON files. ```text npm run build:json -gulp extractPacks ``` - `npm run build:json` - Extract all compendium NEDB files into JSON files. @@ -66,7 +64,6 @@ Cleans and formats source JSON files, removing unnecessary permissions and flags ```text npm run build:clean -gulp extractPacks ``` - `npm run build:clean` - Clean all source JSON files.