Skip to content

Commit

Permalink
chore(*): Move core, tools and cli to monorepo (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mttrbrts authored Sep 26, 2019
1 parent a9df963 commit 3ca4f23
Show file tree
Hide file tree
Showing 430 changed files with 38,408 additions and 1,918 deletions.
7 changes: 6 additions & 1 deletion .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ if [[ "${TRAVIS_REPO_SLUG}" != accordproject* ]]; then
_exit "Skipping deploy; wrong repository slug." 0
fi

# Check that this is not a Pull Request.
if [[ "${TRAVIS_PULL_REQUEST}" != "false" ]]; then
_exit "Skipping deploy; this is a pull request." 0
fi

## Start of release process

# Set the NPM access token we will use to publish.
Expand Down Expand Up @@ -87,7 +92,7 @@ export VERSION=$(node -e "console.log(require('${DIR}/package.json').version)")

# Publish with tag
echo "Pushing with tag ${TAG}"
npm publish --tag="${TAG}" --access public 2>&1
lerna exec -- npm publish --tag="${TAG}" 2>&1

# Check that all required modules have been published to npm and are retrievable
for j in ${NPM_MODULES}; do
Expand Down
12 changes: 12 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"packages": [
"packages/*"
],
"version": "0.80.1",
"hoist": true,
"command": {
"publish": {
"allowBranch": "master"
}
}
}
Loading

0 comments on commit 3ca4f23

Please sign in to comment.