Skip to content

Commit

Permalink
chore: makefile and gitignore (#184)
Browse files Browse the repository at this point in the history
Signed-off-by: leecalcote <[email protected]>
Co-authored-by: leecalcote <[email protected]>
  • Loading branch information
leecalcote and leecalcote authored Oct 30, 2023
1 parent 97b43a7 commit f15cb78
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ dist/**
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
!.yarn/versions

packages/design-system/dist/**
lerna-debug.log
pub.sh
12 changes: 8 additions & 4 deletions Makefile
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

0 comments on commit f15cb78

Please sign in to comment.