taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 48ac110ec6b6805a6d2e48035e20435bd6e9cdac
parent 4b37b5c9249263f70fc8c3e204858c4101858c74
Author: Florian Dold <dold@taler.net>
Date:   Tue, 25 Aug 2026 00:55:05 +0200

typescript-core: install prebuilt packaging artifacts

Diffstat:
Mpackages/challenger-webui/Makefile | 2++
Mpackages/libeufin-bank-webui/Makefile | 2++
Mpackages/taler-auditor-webui/Makefile | 2++
Mpackages/taler-exchange-aml-webui/Makefile | 2++
Mpackages/taler-exchange-kyc-webui/Makefile | 2++
Mpackages/taler-harness/Makefile | 3++-
Mpackages/taler-merchant-webui/Makefile | 2++
Mpackages/taler-wallet-cli/Makefile | 3++-
8 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/packages/challenger-webui/Makefile b/packages/challenger-webui/Makefile @@ -30,5 +30,7 @@ deps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/libeufin-bank-webui/Makefile b/packages/libeufin-bank-webui/Makefile @@ -29,5 +29,7 @@ install-nodeps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/taler-auditor-webui/Makefile b/packages/taler-auditor-webui/Makefile @@ -30,5 +30,7 @@ install-nodeps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/taler-exchange-aml-webui/Makefile b/packages/taler-exchange-aml-webui/Makefile @@ -30,5 +30,7 @@ deps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/taler-exchange-kyc-webui/Makefile b/packages/taler-exchange-kyc-webui/Makefile @@ -30,5 +30,7 @@ deps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/taler-harness/Makefile b/packages/taler-harness/Makefile @@ -26,7 +26,6 @@ LIBDIR = $(prefix)/lib/taler-harness NODEDIR = $(LIBDIR)/node_modules/taler-harness .PHONY: install deps install-nodeps install-selenium install-nodeps: - ./build.mjs install -d $(DESTDIR)$(BINDIR) install -d $(DESTDIR)$(NODEDIR) install -d $(DESTDIR)$(NODEDIR)/bin @@ -51,7 +50,9 @@ deps: pnpm install --frozen-lockfile --filter @gnu-taler/taler-harness... pnpm run --filter @gnu-taler/taler-harness... build install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps endif diff --git a/packages/taler-merchant-webui/Makefile b/packages/taler-merchant-webui/Makefile @@ -30,5 +30,7 @@ install-nodeps: .PHONY: install install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps diff --git a/packages/taler-wallet-cli/Makefile b/packages/taler-wallet-cli/Makefile @@ -26,7 +26,6 @@ BINDIR=$(prefix)/bin NODEDIR=$(LIBDIR)/node_modules/taler-wallet-cli .PHONY: install install-nodeps deps install-nodeps: - ./build-node.mjs @echo installing wallet CLI to $(DESTDIR)$(prefix) install -d $(DESTDIR)$(BINDIR) install -d $(DESTDIR)$(LIBDIR)/build @@ -41,7 +40,9 @@ deps: pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-cli... pnpm run --filter @gnu-taler/taler-wallet-cli... build install: +ifneq ($(TALER_PACKAGING_PREBUILT),1) $(MAKE) deps +endif $(MAKE) install-nodeps endif