mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-22 14:41:04 +01:00
feat: add Makefile and targets
This commit is contained in:
parent
fb8c54dd7a
commit
bee5efec43
34
Makefile
Normal file
34
Makefile
Normal file
@ -0,0 +1,34 @@
|
||||
.PHONY: install
|
||||
install:
|
||||
npm i --legacy-peer-deps
|
||||
|
||||
.PHONY: build-graphql
|
||||
build-graphql:
|
||||
npm run build:graphql-docs
|
||||
|
||||
.PHONY: build-query
|
||||
build-query:
|
||||
npm run build:bruno-query
|
||||
|
||||
.PHONY: build-common
|
||||
build-common:
|
||||
npm run build:bruno-common
|
||||
|
||||
.PHONY: build-all
|
||||
build-all: build-graphql build-query build-common
|
||||
|
||||
.PHONY: build-sandbox
|
||||
build-sandbox:
|
||||
npm run sandbox:bundle-libraries --workspace=packages/bruno-js
|
||||
|
||||
.PHONY: run-web
|
||||
run-web:
|
||||
npm run dev:web
|
||||
|
||||
.PHONY: run-app
|
||||
run-app:
|
||||
npm run dev:electron
|
||||
|
||||
.PHONY: run-dev
|
||||
run-dev:
|
||||
npm run dev
|
Loading…
Reference in New Issue
Block a user