Homogenize node_modules/.bin references.

Some had leading `./` some didn't.
This commit is contained in:
Jesse McCarthy 2016-01-18 13:53:30 -05:00
parent 9ea64e0973
commit 30cf018d33

View File

@ -5,7 +5,7 @@ export NODE_ENV = test
.PHONY: clean test test-only test-cov test-clean test-travis publish build bootstrap publish-core publish-runtime build-website build-core watch-core build-core-test clean-core prepublish .PHONY: clean test test-only test-cov test-clean test-travis publish build bootstrap publish-core publish-runtime build-website build-core watch-core build-core-test clean-core prepublish
build: clean build: clean
node_modules/.bin/gulp build ./node_modules/.bin/gulp build
build-dist: build build-dist: build
cd packages/babel-polyfill; \ cd packages/babel-polyfill; \
@ -14,10 +14,10 @@ build-dist: build
node scripts/build-dist.js node scripts/build-dist.js
watch: clean watch: clean
node_modules/.bin/gulp watch ./node_modules/.bin/gulp watch
lint: lint:
node_modules/.bin/eslint packages/*/src ./node_modules/.bin/eslint packages/*/src
clean: test-clean clean: test-clean
rm -rf packages/babel-polyfill/browser* rm -rf packages/babel-polyfill/browser*
@ -37,7 +37,7 @@ test: lint test-only
test-cov: clean test-cov: clean
# rebuild with test # rebuild with test
rm -rf packages/*/lib rm -rf packages/*/lib
BABEL_ENV=test; node_modules/.bin/gulp build BABEL_ENV=test; ./node_modules/.bin/gulp build
./scripts/test-cov.sh ./scripts/test-cov.sh