You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- -include .env
-
- BASEDIR = $(realpath .)
-
- SRCDIR = $(BASEDIR)/src
- TESTDIR = $(SRCDIR)/test
-
- NODEMOD = $(BASEDIR)/node_modules
- NODEBIN = $(NODEMOD)/.bin
-
- build:
- $(NODEBIN)/rollup \
- --config $(BASEDIR)/rollup.config.js
-
- test:
- NODE_ENV=test \
- $(NODEBIN)/mocha \
- --recursive \
- --require $(NODEMOD)/babel-register \
- $(TESTDIR)
|