From 574babcf5fb2f0ae5554919b5e99c8c13149f813 Mon Sep 17 00:00:00 2001 From: shockdm Date: Wed, 26 Mar 2025 14:11:22 -0400 Subject: [PATCH] Update plugins.md - update pnmp version in accordance with requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - previous version listed in the docs doesn't work with current package requirements: ``` ERR_PNPM_UNSUPPORTED_ENGINE  Unsupported environment (bad pnpm and/or Node.js version) Your pnpm version is incompatible with "/go//vendor/github.com/apache/answer/ui". Expected version: >=9 Got: 8.9.2 ``` --- docs/getting-started/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/plugins.md b/docs/getting-started/plugins.md index fe11bc18c..0c7255149 100644 --- a/docs/getting-started/plugins.md +++ b/docs/getting-started/plugins.md @@ -112,7 +112,7 @@ COPY --from=answer-builder /usr/bin/answer /usr/bin/answer RUN apk --no-cache add \ build-base git bash nodejs npm go && \ - npm install -g pnpm@8.9.2 + npm install -g pnpm@10.7.0 RUN answer build \ --with github.com/apache/answer-plugins/connector-basic \