Skip to content

Commit

Permalink
release need to be in project and not root
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Jan 24, 2024
1 parent 5b8d090 commit 09eab19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"publish-manifest": "npm --workspace packages/tailwind publish --access public",

"release": "npm-run-all --continue-on-error release-*",
"release-apps": "npx semantic-release -e semantic-release-monorepo --workspace packages/bootstrap",
"release-manifest": "npx semantic-release -e semantic-release-monorepo --workspace packages/tailwind"
"release-apps": "npm run release --workspace packages/bootstrap",
"release-manifest": "npm run release --workspace packages/tailwind"
},
"private": true,
"workspaces": {
Expand Down
3 changes: 2 additions & 1 deletion packages/bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"files": [
"src"
],
"type": "module"
"type": "module",
"scripts": { "release": "semantic-release -e semantic-release-monorepo" }
}
3 changes: 2 additions & 1 deletion packages/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"files": [
"src"
],
"type": "module"
"type": "module",
"scripts": { "release": "semantic-release -e semantic-release-monorepo" }
}

0 comments on commit 09eab19

Please sign in to comment.