Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Kelsey <[email protected]>
  • Loading branch information
Dave Kelsey authored Aug 9, 2017
1 parent a89801a commit d88c018
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if [ -z "${TRAVIS_TAG}" ]; then

# Publish with unstable tag. These are development builds.
echo "Pushing with tag unstable"
lerna exec --ignore '@(composer-systests|composer-website)' -- npm publish --tag=unstable 2>&1 | tee
lerna exec --ignore '@(composer-systests|composer-website)' -- npm publish --tag=unstable 2>&1

# quick check to see if the latest npm module has been published
while ! npm view composer-playground@${VERSION} | grep dist-tags > /dev/null 2>&1; do
Expand Down Expand Up @@ -120,7 +120,7 @@ else

# Publish with latest tag (default). These are release builds.
echo "Pushing with tag latest"
lerna exec --ignore '@(composer-systests|composer-website)' -- npm publish 2>&1 | tee
lerna exec --ignore '@(composer-systests|composer-website)' -- npm publish 2>&1

# quick check to see if the latest npm module has been published
while ! npm view composer-playground@${VERSION} | grep dist-tags > /dev/null 2>&1; do
Expand Down
2 changes: 1 addition & 1 deletion .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ fi

# Use lerna bootstrap and not npm install; it's a lot faster in Travis.
cd ${DIR}
lerna bootstrap 2>&1 | tee
lerna bootstrap 2>&1
2 changes: 1 addition & 1 deletion .travis/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ elif [ "${SYSTEST}" != "" ]; then
else

# Run the unit tests.
npm test 2>&1 | tee
npm test 2>&1

# Build the Composer Playground.
cd "${DIR}/packages/composer-playground"
Expand Down

0 comments on commit d88c018

Please sign in to comment.