We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb69a91 commit d1fe05eCopy full SHA for d1fe05e
Makefile
@@ -3,7 +3,8 @@ NPM=$(shell which npm)
3
YARN=$(shell which yarn)
4
JQ=$(shell which jq)
5
6
-COVERALLS="./node_modules/coveralls/bin/coveralls.js"
+BABEL=./node_modules/.bin/babel
7
+COVERALLS=./node_modules/coveralls/bin/coveralls.js
8
REMOTE="[email protected]:reactjs/react-modal"
9
CURRENT_VERSION:=$(shell jq ".version" package.json)
10
COVERAGE?=true
@@ -86,7 +87,7 @@ changelog:
86
87
88
compile:
89
@echo "[Compiling source]"
- babel src --out-dir lib
90
+ $(BABEL) src --out-dir lib
91
92
build: compile
93
@echo "[Building dists]"
0 commit comments