refactor(aio): remove unnecessary -- from yarn commands

This commit is contained in:
George Kalpakas
2017-09-23 17:25:11 +03:00
committed by Victor Berchet
parent 7a965dc58f
commit ffceae0a01
10 changed files with 127 additions and 577 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ if [[ ${CI_MODE:-} == "aio" ]]; then
([[ $TRAVIS_BRANCH == "master" ]] || [[ $TRAVIS_BRANCH == $STABLE_BRANCH ]]) &&
[[ $TRAVIS_PULL_REQUEST != "false" ]]; then
travisFoldStart "deploy.aio.pr-preview"
yarn deploy-preview -- --skip-build
yarn deploy-preview --skip-build
travisFoldEnd "deploy.aio.pr-preview"
fi
)
+1 -1
View File
@@ -13,6 +13,6 @@ source ${thisDir}/_travis-fold.sh
# Run example e2e tests
travisFoldStart "test.aio.example-e2e"
yarn example-e2e -- --setup --local --shard=${AIO_SHARD}/2
yarn example-e2e --setup --local --shard=${AIO_SHARD}/2
travisFoldEnd "test.aio.example-e2e"
)
+1 -1
View File
@@ -20,7 +20,7 @@ source ${thisDir}/_travis-fold.sh
# Run unit tests
travisFoldStart "test.aio.unit"
yarn test -- --single-run
yarn test --single-run
travisFoldEnd "test.aio.unit"