@head.js/analytics.js-new-date
Version:
Creates a new Date, but accepts a few more input types than normal.
28 lines (22 loc) • 476 B
Plain Text
##
# Tasks
##
# Install node modules.
node_modules: package.json $(wildcard node_modules/*/package.json)
@npm install
@touch $@
# Install dependencies.
install: node_modules
# Remove temporary files and build artifacts.
clean:
rm -rf *.log coverage
# Remove temporary files, build artifacts, and vendor dependencies.
distclean: clean
rm -rf node_modules
# Default test target.
test:
TZ=UTC yarn jest
.DEFAULT_GOAL = test