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

View File

@ -87,7 +87,7 @@ fi
cd "`dirname $0`/.."
# Build the app
yarn build -- --env=$deployEnv
yarn build --env=$deployEnv
# Include any mode-specific files
cp -rf src/extra-files/$deployEnv/. dist/
@ -100,5 +100,5 @@ fi
firebase deploy --message "Commit: $TRAVIS_COMMIT" --non-interactive --token "$firebaseToken"
# Run PWA-score tests
yarn test-pwa-score -- "$deployedUrl" "$MIN_PWA_SCORE"
yarn test-pwa-score "$deployedUrl" "$MIN_PWA_SCORE"
)