UNPKG

react-spinkit

Version:

A collection of loading indicators animated with CSS for React

34 lines (26 loc) 479 B
BIN = ./node_modules/.bin release-patch: @$(call release,patch) release-minor: @$(call release,minor) release-major: @$(call release,major) build: npm run build @$(BIN)/webpack publish: git push --tags origin HEAD:master npm run build npm publish publish-gh-pages: git checkout gh-pages git merge master webpack cp examples/* . git add --all . git commit -m "New release" git push origin gh-pages git checkout master define release npm version $(1) endef