Skip to content

Commit e4b77e1

Browse files
committed
Adding Makefile
1 parent d6e0f7d commit e4b77e1

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.PHONY: all install build test clean audit
2+
3+
all: install build test audit
4+
5+
install:
6+
npm install
7+
8+
build:
9+
npm run build
10+
11+
test:
12+
npm test
13+
14+
clean:
15+
npm run clean
16+
17+
audit:
18+
npm audit

0 commit comments

Comments
 (0)