diff options
author | John Olheiser <42128690+jolheiser@users.noreply.github.com> | 2019-02-20 13:56:40 -0600 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-02-20 19:56:40 +0000 |
commit | eaf9ded18201d8ad2587860ed98763ca040f0b71 (patch) | |
tree | bea069efc098a3e7d4beeffb9abaaf26c09f47f3 /CONTRIBUTING.md | |
parent | eea1155afe0fa3b1bbafe91504c9342f9a69245a (diff) | |
download | gitea-eaf9ded18201d8ad2587860ed98763ca040f0b71.tar.gz gitea-eaf9ded18201d8ad2587860ed98763ca040f0b71.zip |
Makefile changes for Windows and easier development (#6103)
* Added Go Path and node_modules to PATH
* Uses npx now for generate-stylesheets
* Uses `go env GOPATH` to calculate adding GOPATH/bin to PATH
* Added note about installing Node 8.0+ to generate stylesheets
* Added preferred Node version to CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8721c37403..bcee101f5f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,7 +102,7 @@ included in the next released version. Generally, the go build tools are installed as-needed in the `Makefile`. An exception are the tools to build the CSS and images. -- To build CSS: Install [Node.js](https://nodejs.org/en/download/package-manager) +- To build CSS: Install [Node.js](https://nodejs.org/en/download/package-manager) at version 8.0 or above with `npm` and then run `npm install` and `make generate-stylesheets`. - To build Images: ImageMagick, inkscape and zopflipng binaries must be available in your `PATH` to run `make generate-images`. |