From bf336d22f05c494dea161cf06cf4c290d2b71ff4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 30 Sep 2024 12:05:55 +0200 Subject: [PATCH] Bug 38031: Make po2json available to yarn If you run `yarn run po2json` from /kohadevbox/koha and no local node_modules directory exists, you will get: error Command "po2json" not found. I didn't find a cause of a possible regression. Having it listed in package.json fixes the problem. Signed-off-by: Paul Derscheid --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ef76a1d58b..8af3e60fd5 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,7 @@ "build:prod": "yarn css:build:prod && yarn js:build:prod && yarn api:bundle", "cypress": "cypress", "prettier": "prettier", + "po2json": "po2json", "api:bundle": "redocly bundle --ext json api/v1/swagger/swagger.yaml --output api/v1/swagger/swagger_bundle.json" }, "repository": { -- 2.46.2