Skip to content

Commit

Permalink
chore: add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvasilchuk committed Sep 20, 2020
1 parent dab7fa9 commit 73a32ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true

[{Makefile,**.mk}]
# Use tabs for indentation (Makefiles require tabs)
indent_style = tab
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: build
build:
npm run build

.PHONY: test
test:
npm run test

fmt:
npm run fmt

0 comments on commit 73a32ad

Please sign in to comment.