From ba369eb4cbff7cdf4025db2ff8ef37e6549f6346 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. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ef76a1d58b5..8af3e60fd50 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.34.1