add compile target to makefile
This commit is contained in:
parent
9dfef2100d
commit
ed466030d1
@ -40,12 +40,32 @@ clean:
|
|||||||
submodules-update:
|
submodules-update:
|
||||||
git submodule update --recursive --remote
|
git submodule update --recursive --remote
|
||||||
|
|
||||||
|
.PHONY: compile
|
||||||
|
compile:
|
||||||
|
pnpm install -r --frozen-lockfile
|
||||||
|
pnpm run compile
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check:
|
check:
|
||||||
pnpm install -r --frozen-lockfile
|
pnpm install -r --frozen-lockfile
|
||||||
pnpm run compile
|
pnpm run compile
|
||||||
pnpm run check
|
pnpm run check
|
||||||
|
|
||||||
|
.PHONY: anastasis-webui
|
||||||
|
anastasis-webui:
|
||||||
|
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
|
||||||
|
pnpm run compile --filter @gnu-taler/anastasis-webui...
|
||||||
|
|
||||||
|
.PHONY: anastasis-webui-dev
|
||||||
|
anastasis-webui-dev:
|
||||||
|
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
|
||||||
|
pnpm run dev --filter @gnu-taler/anastasis-webui...
|
||||||
|
|
||||||
|
.PHONY: anastasis-webui-storybook
|
||||||
|
anastasis-webui-storybook:
|
||||||
|
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
|
||||||
|
pnpm run storybook --filter @gnu-taler/anastasis-webui...
|
||||||
|
|
||||||
.PHONY: webextension
|
.PHONY: webextension
|
||||||
webextension:
|
webextension:
|
||||||
pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension...
|
pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension...
|
||||||
|
Loading…
Reference in New Issue
Block a user