From 4a4d30894e63326ce8cd9dc56c17eab2f0279fd6 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Thu, 3 Nov 2022 00:03:26 +0200 Subject: [PATCH] update package.json scripts for wiki --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 81f2c59a0..b9d6eaf8c 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,10 @@ "gui-test": "babel-node scripts/build-tests.js && open http://localhost:8585 && node ./tests/server.js", "lint": "eslint .", "lint-staged": "lint-staged", + "wiki:check-table-updates": "node ./scripts/check-sources-updates.js", + "wiki:build-table": "yarn wiki:check-table-updates && node ./scripts/build-compatibility-table.js", "wiki:build-docs": "node scripts/build-docs.js", - "wiki:check-updates": "node ./scripts/check-sources-updates.js", - "wiki:update": "yarn wiki:check-updates && node ./scripts/build-compatibility-table.js", + "wiki:update": "yarn wiki:build-table && yarn wiki:build-docs", "prepublishOnly": "yarn build", "increment": "yarn version --patch --no-git-tag-version" },