diff options
author | Florian Dold <florian@dold.me> | 2022-03-08 13:14:33 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-03-08 13:14:33 +0100 |
commit | d0376d9e685a0e4920ec75b6e7ab176fa148aa4e (patch) | |
tree | 2d72924b3cbcd105eb448b44a1e25fd9c0b589e6 /build-system/Makefile | |
parent | 9c758d1fe9cc0f372a9f38fb757ede55b8ce5ac0 (diff) |
more Makefile improvements
Diffstat (limited to 'build-system/Makefile')
-rw-r--r-- | build-system/Makefile | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/build-system/Makefile b/build-system/Makefile index 20c6ce889..9da81f452 100644 --- a/build-system/Makefile +++ b/build-system/Makefile @@ -42,28 +42,21 @@ submodules-update: .PHONY: check check: - pnpm i -r --frozen-lockfile + pnpm install -r --frozen-lockfile pnpm run compile pnpm run check -.PHONY: webextensions +.PHONY: webextension webextension: - pnpm i -r --frozen-lockfile - pnpm run compile + pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension... cd ./packages/taler-wallet-webextension/ && ./pack.sh .PHONY: webextension-dev-view webextension-dev-view: - pnpm i -r --frozen-lockfile + pnpm install -r --frozen-lockfile pnpm run compile pnpm run --filter @gnu-taler/taler-wallet-webextension storybook -.PHONY: integrationtests -integrationtests: compile - pnpm i -r --frozen-lockfile - pnpm run compile - ./packages/taler-integrationtests/testrunner '*' - .PHONY: i18n i18n: compile # extract translatable strings |