improve performance of 'make install'
We now only build workspace dependencies of taler-wallet-cli instead of the whole workspace.
This commit is contained in:
parent
3e6f6eb3d7
commit
9c758d1fe9
@ -1,8 +1,10 @@
|
|||||||
# This Makefile has been placed in the public domain.
|
# This Makefile has been placed in the public domain.
|
||||||
|
|
||||||
src = src
|
src = src
|
||||||
|
poname = taler-wallet-webex
|
||||||
|
|
||||||
tsc = node_modules/typescript/bin/tsc
|
tsc = node_modules/typescript/bin/tsc
|
||||||
|
pogen = node_modules/@gnu-taler/pogen/bin/pogen.js
|
||||||
typedoc = node_modules/typedoc/bin/typedoc
|
typedoc = node_modules/typedoc/bin/typedoc
|
||||||
ava = node_modules/.bin/ava
|
ava = node_modules/.bin/ava
|
||||||
nyc = node_modules/nyc/bin/nyc.js
|
nyc = node_modules/nyc/bin/nyc.js
|
||||||
@ -10,11 +12,6 @@ git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git
|
|||||||
|
|
||||||
include ./build-system/config.mk
|
include ./build-system/config.mk
|
||||||
|
|
||||||
.PHONY: compile
|
|
||||||
compile:
|
|
||||||
pnpm i -r --frozen-lockfile
|
|
||||||
pnpm run compile
|
|
||||||
|
|
||||||
.PHONY: dist
|
.PHONY: dist
|
||||||
dist:
|
dist:
|
||||||
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags --abbrev=0).tar.gz
|
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags --abbrev=0).tar.gz
|
||||||
@ -25,7 +22,9 @@ dist-git:
|
|||||||
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz
|
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz
|
||||||
|
|
||||||
.PHONY: publish
|
.PHONY: publish
|
||||||
publish: compile
|
publish:
|
||||||
|
pnpm i -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
pnpm publish -r --no-git-checks
|
pnpm publish -r --no-git-checks
|
||||||
|
|
||||||
# make documentation from docstrings
|
# make documentation from docstrings
|
||||||
@ -42,24 +41,49 @@ submodules-update:
|
|||||||
git submodule update --recursive --remote
|
git submodule update --recursive --remote
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check: compile
|
check:
|
||||||
|
pnpm i -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
pnpm run check
|
pnpm run check
|
||||||
|
|
||||||
.PHONY: webextensions
|
.PHONY: webextensions
|
||||||
webextension: compile
|
webextension:
|
||||||
|
pnpm i -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
cd ./packages/taler-wallet-webextension/ && ./pack.sh
|
cd ./packages/taler-wallet-webextension/ && ./pack.sh
|
||||||
|
|
||||||
.PHONY: webextension-dev-view
|
.PHONY: webextension-dev-view
|
||||||
webextension-dev-view: compile
|
webextension-dev-view:
|
||||||
|
pnpm i -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
pnpm run --filter @gnu-taler/taler-wallet-webextension storybook
|
pnpm run --filter @gnu-taler/taler-wallet-webextension storybook
|
||||||
|
|
||||||
.PHONY: integrationtests
|
.PHONY: integrationtests
|
||||||
integrationtests: compile
|
integrationtests: compile
|
||||||
|
pnpm i -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
./packages/taler-integrationtests/testrunner '*'
|
./packages/taler-integrationtests/testrunner '*'
|
||||||
|
|
||||||
.PHONY: i18n
|
.PHONY: i18n
|
||||||
i18n: compile
|
i18n: compile
|
||||||
pnpm run --filter @gnu-taler/taler-wallet-webextension i18n
|
# extract translatable strings
|
||||||
|
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
|
||||||
|
| xargs node $(pogen) \
|
||||||
|
| msguniq \
|
||||||
|
| msgmerge src/i18n/poheader - \
|
||||||
|
> src/i18n/$(poname).pot
|
||||||
|
# merge existing translations
|
||||||
|
@for pofile in src/i18n/*.po; do \
|
||||||
|
echo merging $$pofile; \
|
||||||
|
msgmerge -o $$pofile $$pofile src/i18n/$(poname).pot; \
|
||||||
|
done;
|
||||||
|
# generate .ts file containing all translations
|
||||||
|
cat src/i18n/strings-prelude > src/i18n/strings.ts
|
||||||
|
@for pofile in src/i18n/*.po; do \
|
||||||
|
echo appending $$pofile; \
|
||||||
|
./contrib/po2ts $$pofile >> src/i18n/strings.ts; \
|
||||||
|
done;
|
||||||
|
./node_modules/.bin/prettier --config .prettierrc --write src/i18n/strings.ts
|
||||||
|
|
||||||
# Some commands are only available when ./configure has been run
|
# Some commands are only available when ./configure has been run
|
||||||
|
|
||||||
@ -71,7 +95,8 @@ install: warn-noprefix
|
|||||||
else
|
else
|
||||||
install_target = $(prefix)/lib/taler-wallet-cli
|
install_target = $(prefix)/lib/taler-wallet-cli
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: compile
|
install:
|
||||||
|
pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-cli...
|
||||||
install -d $(prefix)/bin
|
install -d $(prefix)/bin
|
||||||
install -d $(install_target)/bin
|
install -d $(install_target)/bin
|
||||||
install -d $(install_target)/node_modules/taler-wallet-cli
|
install -d $(install_target)/node_modules/taler-wallet-cli
|
||||||
|
Loading…
Reference in New Issue
Block a user