File size: 2,241 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
.DELETE_ON_ERROR:
EXEC = npm exec --
DIST = ./dist
BUILD = ./build
LIB = ./lib
TEST = ./test
EXAMPLES = ./examples/*.{js,html}
MIN = $(DIST)/react-grid-layout.min.js
MIN_MAP = $(DIST)/react-grid-layout.min.js.map
.PHONY: test dev lint build clean install link
build: clean build-js $(MIN)
clean:
rm -rf $(BUILD) $(DIST)
clean-example:
rm -rf $(EXAMPLES)
dev:
@$(EXEC) webpack serve --config webpack-dev-server.config.js \
--hot --progress
# Allows usage of `make install`, `make link`
install link:
@npm $@
# Build browser module
dist/%.min.js: $(LIB) $(BIN)
@$(EXEC) webpack
build-js:
@$(EXEC) babel --out-dir $(BUILD) $(LIB)
# Will build for use on github pages. Full url of page is
# https://react-grid-layout.github.io/react-grid-layout/examples/00-showcase.html
# so the CONTENT_BASE should adapt.
build-example: build clean-example
@$(EXEC) webpack --config webpack-examples.config.js
env CONTENT_BASE="/react-grid-layout/examples/" node ./examples/util/generate.js
# Note: this doesn't hot reload, you need to re-run to update files.
# TODO fix that
view-example: build-example
@$(EXEC) webpack serve --config webpack-examples.config.js --progress
# FIXME flow is usually global
lint:
@$(EXEC) flow
@$(EXEC) eslint --ext .js,.jsx
test:
env NODE_ENV=test $(EXEC) jest --coverage
test-watch:
env NODE_ENV=test $(EXEC) jest --watch
test-update-snapshots:
env NODE_ENV=test $(EXEC) jest --updateSnapshot
release-patch: build lint test
@$(call release,patch)
release-minor: build lint test
@$(call release,minor)
release-major: build lint test
@$(call release,major)
publish:
git push --tags origin HEAD:master
npm publish
define release
VERSION=`node -pe "require('./package.json').version"` && \
NEXT_VERSION=`node -pe "require('semver').inc(\"$$VERSION\", '$(1)')"` && \
node -e "\
['./package.json'].forEach(function(fileName) {\
var j = require(fileName);\
j.version = \"$$NEXT_VERSION\";\
var s = JSON.stringify(j, null, 2);\
require('fs').writeFileSync(fileName, s + '\\n');\
});" && \
git add package.json CHANGELOG.md $(MIN) $(MIN_MAP) && \
git commit -nm "release $$NEXT_VERSION" && \
git tag "$$NEXT_VERSION" -m "release $$NEXT_VERSION"
npm pack --dry-run
endef
|