update .PHONY [skip ci]

This commit is contained in:
Henry Zhu 2016-10-01 11:15:15 -04:00
parent 0e02a18216
commit fe2b9d73ed

View File

@ -2,7 +2,7 @@ MAKEFLAGS = -j1
export NODE_ENV = test 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: build build-dist watch lint clean test-clean test-only test test-cov test-ci publish bootstrap
build: clean build: clean
./node_modules/.bin/gulp build ./node_modules/.bin/gulp build
@ -31,6 +31,7 @@ test-clean:
rm -rf packages/*/test/tmp rm -rf packages/*/test/tmp
rm -rf packages/*/test-fixtures.json rm -rf packages/*/test-fixtures.json
# without lint
test-only: test-only:
./scripts/test.sh ./scripts/test.sh
make test-clean make test-clean
@ -55,6 +56,7 @@ publish:
rm -rf packages/*/lib rm -rf packages/*/lib
BABEL_ENV=production make build-dist BABEL_ENV=production make build-dist
make test make test
# not using lerna independent mode atm, so only update packages that have changed since we use ^
./node_modules/.bin/lerna publish --only-explicit-updates ./node_modules/.bin/lerna publish --only-explicit-updates
make clean make clean
#./scripts/build-website.sh #./scripts/build-website.sh