booking-core
Version:
Core components for booking repo
32 lines (24 loc) • 497 B
Plain Text
SHELL=/bin/bash
export PATH := node_modules/.bin:$(PATH)
build: node_modules/INSTALLED $(shell find src -type f)
yarn install
yarn run lint
yarn run test
yarn run clean
yarn run build
build-dev:
yarn run clean
yarn run build-dev
test: node_modules/INSTALLED $(shell find src -type f)
yarn install
yarn run lint
yarn run test
watch:
yarn run clean
yarn run watch
fix:
yarn run fix
node_modules/INSTALLED: package.json
yarn install
touch $@