From b4953707408686209cda7902f2378f62ad3498da Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 16 Mar 2015 19:25:58 +1100 Subject: [PATCH] only compile babel folder in src --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 790942bc18..8f87422055 100644 --- a/Makefile +++ b/Makefile @@ -11,13 +11,13 @@ export NODE_ENV = test .PHONY: clean test test-cov test-clean test-travis test-simple test-all test-browser publish build bootstrap publish-core publish-runtime build-core watch-core build-core-test build-core: - node $(BABEL_CMD) src --out-dir lib --copy-files + node $(BABEL_CMD) src/babel --out-dir lib/babel --copy-files build-core-test: - node $(BABEL_CMD) src --out-dir lib --copy-files --auxiliary-comment "istanbul ignore next" + node $(BABEL_CMD) src/babel --out-dir lib/babel --copy-files --auxiliary-comment "istanbul ignore next" watch-core: - node $(BABEL_CMD) src --out-dir lib --watch --copy-files + node $(BABEL_CMD) src/babel --out-dir lib/babel --watch --copy-files build: mkdir -p dist