generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: makefile and gitignore (#184)
Signed-off-by: leecalcote <[email protected]> Co-authored-by: leecalcote <[email protected]>
- Loading branch information
1 parent
97b43a7
commit f15cb78
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
setup: | ||
.PHONY: setup build format-check format-fix | ||
|
||
## Install Sistent dependencies your local machine. | ||
package-setup: | ||
yarn install | ||
|
||
build: install | ||
## Build Sistent components and packages on your local machine. | ||
package-build: setup | ||
yarn run build-all | ||
|
||
format-check: | ||
package-format-check: | ||
yarn run format:check | ||
|
||
format-fix: | ||
package-format-fix: | ||
yarn run format:write |