redux-ab-test
Version:
A/B testing React components with Redux and debug tools. Isomorphic with a simple, universal interface. Well documented and lightweight. Tested in popular browsers and Node.js. Includes helpers for React, Redux, and Segment.io
25 lines (16 loc) • 329 B
Plain Text
all: clean bootstrap test lint flow
clean:
rm -rf ./node_modules ./dist
bootstrap:
npm cache clear || true
npm install --silent
npm prune
test: bootstrap
npm run test
lint: bootstrap
npm run lint
flow: bootstrap
npm run flow
build: clean bootstrap
npm run build