taler-typescript-core

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

commit df53866e6b148ea5fd2ab57e906a4aa36b535ed3
parent cf8c0725a4cbc66bc9c11c201cbdfbf07aa1e6b3
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon,  5 Jun 2023 09:42:10 -0300

fix spa dir

Diffstat:
Mpackages/exchange-backoffice-ui/Makefile | 3+--
Mpackages/merchant-backoffice-ui/Makefile | 2+-
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/packages/exchange-backoffice-ui/Makefile b/packages/exchange-backoffice-ui/Makefile @@ -13,6 +13,5 @@ install: pnpm run check pnpm run build install -d $(spa_dir) - rm -rf ./dist/components - install ./dist/* $(spa_dir) + install ./dist/prod/* $(spa_dir) diff --git a/packages/merchant-backoffice-ui/Makefile b/packages/merchant-backoffice-ui/Makefile @@ -11,5 +11,5 @@ spa_dir=$(prefix)/share/taler/merchant-backoffice install: pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backoffice... pnpm run build - (cd dist && find . -type f -exec install -D "{}" "$(spa_dir)/{}" \;) + (cd dist/prod && find . -type f -exec install -D "{}" "$(spa_dir)/{}" \;)