This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
63 lines (46 loc) · 1.61 KB
/
Makefile
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
bin = $(shell npm bin)
sjs = $(bin)/sjs
browserify = $(bin)/browserify
jsdoc = $(bin)/jsdoc
uglify = $(bin)/uglifyjs
VERSION = $(shell node -e 'console.log(require("./package.json").version)')
# -- Configuration -----------------------------------------------------
PACKAGE = core.inspect
EXPORTS = Folktale.Core.Inspect
# -- Compilation -------------------------------------------------------
dist:
mkdir -p $@
dist/$(PACKAGE).umd.js: $(LIB_DIR)/index.js dist
$(browserify) $< --standalone $(EXPORTS) > $@
dist/$(PACKAGE).umd.min.js: dist/$(PACKAGE).umd.js
$(uglify) --mangle - < $< > $@
# -- Tasks -------------------------------------------------------------
all: $(TGT)
bundle: dist/$(PACKAGE).umd.js
minify: dist/$(PACKAGE).umd.min.js
documentation:
$(jsdoc) --configure jsdoc.conf.json
ABSPATH=$(shell cd "$(dirname "$0")"; pwd) $(MAKE) clean-docs
clean-docs:
perl -pi -e "s?$$ABSPATH/??g" ./docs/*.html
clean:
rm -rf dist build $(LIB_DIR)
package: documentation bundle minify
mkdir -p dist/$(PACKAGE)-$(VERSION)
cp -r docs dist/$(PACKAGE)-$(VERSION)
cp -r lib dist/$(PACKAGE)-$(VERSION)
cp dist/*.js dist/$(PACKAGE)-$(VERSION)
cp package.json dist/$(PACKAGE)-$(VERSION)
cp README.md dist/$(PACKAGE)-$(VERSION)
cp LICENCE dist/$(PACKAGE)-$(VERSION)
cd dist && tar -czf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
publish: clean test
npm install
npm publish
bump:
node tools/bump-version.js $$VERSION_BUMP
bump-feature:
VERSION_BUMP=FEATURE $(MAKE) bump
bump-major:
VERSION_BUMP=MAJOR $(MAKE) bump
.PHONY: test bump bump-feature bump-major publish package clean documentation