diff options
Diffstat (limited to 'build-system/Makefile')
-rw-r--r-- | build-system/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build-system/Makefile b/build-system/Makefile index 06023c097..98994ac84 100644 --- a/build-system/Makefile +++ b/build-system/Makefile @@ -4,7 +4,7 @@ src = src poname = taler-wallet-webex tsc = node_modules/typescript/bin/tsc -pogen = node_modules/pogen/bin/pogen.js +pogen = node_modules/@gnu-taler/pogen/bin/pogen.js typedoc = node_modules/typedoc/bin/typedoc ava = node_modules/.bin/ava nyc = node_modules/nyc/bin/nyc.js @@ -21,6 +21,10 @@ compile: dist: $(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz +.PHONY: publish +publish: compile + pnpm publish -r --no-git-checks + # make documentation from docstrings .PHONY: typedoc typedoc: |