blob: 701f27d6bb37cf2ce1e00ff805b38f8d964e1892 (
plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# This makefile is meant to be run on OSX/Linux. Make sure any artifacts
# created here are checked in so people on all platforms can run npm scripts.
# This build should be run once per release.
SHELL=/bin/bash
export PATH := ./node_modules/.bin/:$(PATH):./bin/
PACKAGE = asyncjs
REQUIRE_NAME = async
BABEL_NODE = babel-node
UGLIFY = uglifyjs
XYZ = support/xyz.sh --repo git@github.com:caolan/async.git
BUILDDIR = build
BUILD_ES = build-es
DIST = dist
SRC = lib/index.js
SCRIPTS = ./support
JS_SRC = $(shell find lib/ -type f -name '*.js')
LINT_FILES = lib/ mocha_test/ $(shell find perf/ -maxdepth 2 -type f) support/ karma.conf.js
UMD_BUNDLE = $(BUILDDIR)/dist/async.js
UMD_BUNDLE_MIN = $(BUILDDIR)/dist/async.min.js
CJS_BUNDLE = $(BUILDDIR)/index.js
ES_MODULES = $(patsubst lib/%.js, build-es/%.js, $(JS_SRC))
all: clean lint build test
test:
npm test
clean:
rm -rf $(BUILDDIR)
rm -rf $(BUILD_ES)
rm -rf $(DIST)
rm -rf tmp/
lint:
eslint $(LINT_FILES)
# Compile the ES6 modules to singular bundles, and individual bundles
build-bundle: build-modules $(UMD_BUNDLE) $(CJS_BUNDLE)
build-modules:
$(BABEL_NODE) $(SCRIPTS)/build/modules-cjs.js
$(UMD_BUNDLE): $(JS_SRC) package.json
mkdir -p "$(@D)"
$(BABEL_NODE) $(SCRIPTS)/build/aggregate-bundle.js
$(CJS_BUNDLE): $(JS_SRC) package.json
$(BABEL_NODE) $(SCRIPTS)/build/aggregate-cjs.js
# Create the minified UMD versions and copy them to dist/ for bower
build-dist: $(DIST) $(UMD_BUNDLE) $(UMD_BUNDLE_MIN) $(DIST)/async.js $(DIST)/async.min.js
$(DIST):
mkdir -p $@
$(UMD_BUNDLE_MIN): $(UMD_BUNDLE)
mkdir -p "$(@D)"
$(UGLIFY) $< --mangle --compress \
--source-map $(DIST)/async.min.map \
--source-map-url async.min.map \
-o $@
$(DIST)/async.js: $(UMD_BUNDLE)
cp $< $@
$(DIST)/async.min.js: $(UMD_BUNDLE_MIN)
cp $< $@
build-es: $(ES_MODULES)
$(BUILD_ES)/%.js: lib/%.js
mkdir -p "$(@D)"
sed -E "s/(import.+)lodash/\1lodash-es/g" $< > $@
test-build:
mocha support/build.test.js
build-config: $(BUILDDIR)/package.json $(BUILDDIR)/bower.json $(BUILDDIR)/README.md $(BUILDDIR)/LICENSE $(BUILDDIR)/CHANGELOG.md
build-es-config: $(BUILD_ES)/package.json $(BUILD_ES)/README.md $(BUILD_ES)/LICENSE $(BUILD_ES)/CHANGELOG.md
$(BUILDDIR)/package.json: package.json
mkdir -p "$(@D)"
support/sync-cjs-package.js > $@
$(BUILDDIR)/%: %
mkdir -p "$(@D)"
cp $< $@
$(BUILD_ES)/package.json: package.json
mkdir -p "$(@D)"
support/sync-es-package.js > $@
$(BUILD_ES)/%: %
mkdir -p "$(@D)"
cp $< $@
.PHONY: build-modules build-bundle build-dist build-es build-config build-es-config test-build
build: clean build-bundle build-dist build-es build-config build-es-config test-build
.PHONY: test lint build all clean
.PHONY: release-major release-minor release-patch release-prerelease
release-major release-minor release-patch release-prerelease: all
npm i # ensure dependencies are up to date (#1158)
git add --force $(DIST)
git commit -am "Update built files"; true
$(XYZ) --increment $(@:release-%=%)
# build again to propagate the version
$(MAKE) build-config
$(MAKE) build-es-config
cd build/ && npm publish
cd build-es/ && npm publish
|