Skip to content

Commit

Permalink
Fix package publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Sep 1, 2023
1 parent 38202d0 commit 15db7f1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/young-ducks-yawn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@deroll/router": minor
"@deroll/wallet": minor
"@deroll/app": minor
---

fix package publishing
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"prettier": "^3",
"turbo": "latest"
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].1"
}
1 change: 1 addition & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"compile": "tsup",
"dev": "tsup --watch",
"lint": "eslint",
"prepack": "run-s build",
"test": "vitest"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"compile": "tsup",
"dev": "tsup --watch",
"lint": "eslint",
"test": "vitest"
"test": "vitest",
"prepack": "run-s build"
},
"dependencies": {
"@deroll/app": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"codegen": "wagmi generate",
"compile": "tsup",
"dev": "tsup --watch",
"lint": "eslint"
"lint": "eslint",
"prepack": "run-s build"
},
"dependencies": {
"@deroll/app": "workspace:*",
Expand Down

0 comments on commit 15db7f1

Please sign in to comment.