From a56cd9a8181202b5ae3f3100363a90f178e2afa2 Mon Sep 17 00:00:00 2001 From: Piotr <23506256+pioorg@users.noreply.github.com> Date: Thu, 21 Dec 2023 16:04:25 +0100 Subject: [PATCH] Added note about node.js being required for ./gradlew spotlessApply --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 0edf9ffb05c..e771347bde9 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -8,7 +8,7 @@ * follow the style, naming and structure conventions of the rest of the project. * make commits atomic and easy to merge. * when updating documentation, please see [our guidance for documentation contributions](contributing_docs.md). - * apply format running `./gradlew spotlessApply` + * apply format running `./gradlew spotlessApply` (this requires [Node.js](https://nodejs.org/) to be installed on your machine, one of the [package managers](https://nodejs.org/en/download/package-manager/) might be handy) * verify all tests are passing. Build the project with `./gradlew check` to do this. **N.B.** Gradle's Build Cache is enabled by default, but you can add `--no-build-cache` flag to disable it.