Skip to content

Commit

Permalink
build: Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCurrin committed Dec 7, 2020
1 parent ca28fe1 commit 881734f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ indent_size = 2

[*.{md,html}]
indent_size = 4

[Makefile]
indent_style = tab
indent_size = 4
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
default: install

# Local pre-push check.
all: install build

h help:
@egrep '^\S|^$$' Makefile


i install:
yarn install

build:
yarn lint:fix
yarn build:clean

# Run build and then tag and push.
tag:
npm version minor

0 comments on commit 881734f

Please sign in to comment.