Skip to content

Commit

Permalink
update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Jul 27, 2020
1 parent 64d2a49 commit a3ce767
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
PJ=package.json
TS=combinatorics.ts
JS=combinatorics.js
MJS=combinatorics.mjs
DTS=combinatorics.d.ts

all: $(JS)
all: $(PJ) $(JS)

$(JS): $(TS)
$(JS): $(PJ) $(TS)
tsc -d --target es6 $(TS)

test: $(JS)
test: $(PJ) $(JS)
mocha --require esm

clean:
Expand Down

0 comments on commit a3ce767

Please sign in to comment.