From c604e1653a3e48dc2d19bbefebe367f3623b87fe Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Thu, 3 Nov 2022 21:11:41 +0200 Subject: [PATCH] fix package.json scripts for wiki --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index b9d6eaf8..39e12ca3 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,8 @@ "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-table": "node ./scripts/check-sources-updates.js && node ./scripts/build-compatibility-table.js", "wiki:build-docs": "node scripts/build-docs.js", - "wiki:update": "yarn wiki:build-table && yarn wiki:build-docs", "prepublishOnly": "yarn build", "increment": "yarn version --patch --no-git-tag-version" },