add bom.lock makefile target

Signed-off-by: Finn Behrens <me@kloenk.dev>
This commit is contained in:
Finn Behrens
2021-09-11 17:50:28 +02:00
parent 2294770442
commit 29abb3e567
3 changed files with 52 additions and 0 deletions

View File

@ -149,6 +149,10 @@ macos-mas-release: macos-mas
mkdir -p $(CURRENT_RELEASE_DIR)
cp $(OUT_MACOS_MAS) $(CURRENT_RELEASE_DIR)
bom.lock: element-desktop/yarn.lock element-web/yarn.lock matrix-js-sdk/yarn.lock matrix-react-sdk/yarn.lock
./build-bom.sh
bom: bom.lock
clean:
$(YARN) --cwd matrix-js-sdk clean
$(YARN) --cwd matrix-react-sdk clean
@ -157,3 +161,4 @@ clean:
rm -f element-desktop/webapp
rm -rf element-web/dist
rm -rf local-pkgbuild
rm bom.lock