1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/Makefile
Sebastian Malton 5fc8ec610d
Publish to the correct channels instead of always latest (#6963)
Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-01-18 09:00:33 -05:00

32 lines
404 B
Makefile

CMD_ARGS = $(filter-out $@,$(MAKECMDGOALS))
%:
@:
ELECTRON_BUILDER_EXTRA_ARGS ?=
.PHONY: bootstrap
bootstrap:
yarn install
.PHONY: lint
lint: node_modules
yarn lint
.PHONY: test
test: node_modules
yarn run test:unit
.PHONY: integration
integration: build
yarn test:integration
.PHONY: build
build:
yarn lerna run build:app
.PHONY: clean
clean:
yarn run clean
yarn run clean:node_modules