From 00f72f47354fa3bb23b89bef805cdf2f03bcf873 Mon Sep 17 00:00:00 2001 From: Charlie Somerville Date: Mon, 18 Jan 2016 23:09:51 +1100 Subject: [PATCH] use project-local gulp binstub rather than system gulp --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5444aa3376..99bc345dae 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PATH := node_modules/.bin:$(PATH) .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 - gulp build + node_modules/.bin/gulp build build-dist: build cd packages/babel-polyfill; \ @@ -16,7 +16,7 @@ build-dist: build node scripts/build-dist.js watch: clean - gulp watch + node_modules/.bin/gulp watch lint: node node_modules/.bin/eslint packages/*/src @@ -39,7 +39,7 @@ test: lint test-only test-cov: clean # rebuild with test rm -rf packages/*/lib - BABEL_ENV=test; gulp build + BABEL_ENV=test; node_modules/.bin/gulp build ./scripts/test-cov.sh