UNPKG

react-responsive-grid

Version:
37 lines (28 loc) 598 B
BIN = ./node_modules/.bin release-patch: @$(call release,patch) release-minor: @$(call release,minor) release-major: @$(call release,major) build: @$(BIN)/cjsx -cb -o dist/ src/ @$(BIN)/webpack watch: @$(BIN)/webpack-dev-server -w publish: git push --tags origin HEAD:master @$(BIN)/cjsx -cb -o dist/ src/ npm publish publish-gh-pages: git checkout gh-pages git merge master @$(BIN)/webpack --config webpack.config.production.js cp examples/* . git add --all . git commit -m "New release" git push origin gh-pages git checkout master define release npm version $(1) endef