From b06d84de8b28e2d733a0ebbec50bf6bba6a0747c Mon Sep 17 00:00:00 2001 From: Chris Garrity Date: Tue, 12 May 2020 14:43:35 -0400 Subject: [PATCH] add new npm commands for syncing help --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index c21f932a..2669e804 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,11 @@ "pull:blocks": "babel-node scripts/tx-pull-blocks ./editor/blocks/", "pull:editor": "npm run pull:blocks && npm run pull:extensions && npm run pull:paint && npm run pull:interface", "pull:www": "babel-node scripts/tx-pull-www ./www", + "pull:help:names": "./scripts/tx-pull-help-names.js", + "pull:help:articles": "./scripts/tx-pull-help-articles.js", + "pull:help": "npm run pull:help:names && npm run pull:help:articles", + "push:help": "./scripts/tx-push-help.js", + "sync:help": "npm run push:help && npm run pull:help", "test": "npm run lint:js && npm run validate:editor && npm run validate:www && npm run build && npm run lint:json", "update": "scripts/update-translations.sh", "validate:blocks": "babel-node scripts/validate-translations ./editor/blocks/",