Skip to content

Commit

Permalink
ci: Stop versioning/tagging private packages (#55)
Browse files Browse the repository at this point in the history
Because lerna was getting its packages from yarn workspaces, we were pushing tags for all updates to the site. This was creating a lot of noise in the git history and the releases page.

By separating lerna packages and workspaces, we can exclude the site from being versioned.
  • Loading branch information
zioroboco committed Oct 16, 2019
1 parent ac2ebff commit 435ff56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lerna.json
Expand Up @@ -4,6 +4,6 @@
"**/*.{stories,spec,test}.{js,jsx,ts,tsx}",
"**/*.{md,mdx}"
],
"npmClient": "yarn",
"useWorkspaces": true
"npmClient": "npm",
"packages": ["packages/*"]
}
2 changes: 1 addition & 1 deletion site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
"version": "1.0.2",
"version": "0.0.0-private",
"private": true,
"dependencies": {
"@babel/core": "^7.6.0",
Expand Down

0 comments on commit 435ff56

Please sign in to comment.