Skip to content

Commit

Permalink
Homogenize node_modules/.bin references.
Browse files Browse the repository at this point in the history
Some had leading `./` some didn't.
  • Loading branch information
jmm committed Jan 18, 2016
1 parent 9ea64e0 commit 30cf018
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

build: clean
node_modules/.bin/gulp build
./node_modules/.bin/gulp build

build-dist: build
cd packages/babel-polyfill; \
Expand All @@ -14,10 +14,10 @@ build-dist: build
node scripts/build-dist.js

watch: clean
node_modules/.bin/gulp watch
./node_modules/.bin/gulp watch

lint:
node_modules/.bin/eslint packages/*/src
./node_modules/.bin/eslint packages/*/src

clean: test-clean
rm -rf packages/babel-polyfill/browser*
Expand All @@ -37,7 +37,7 @@ test: lint test-only
test-cov: clean
# rebuild with test
rm -rf packages/*/lib
BABEL_ENV=test; node_modules/.bin/gulp build
BABEL_ENV=test; ./node_modules/.bin/gulp build

./scripts/test-cov.sh

Expand Down

0 comments on commit 30cf018

Please sign in to comment.