Skip to content

Commit

Permalink
semi urgent 🐛 move dependencies into individual package.jsons (#144)
Browse files Browse the repository at this point in the history
* move dependencies into individual package.jsons

* add changeset
  • Loading branch information
mayakoneval authored Jul 12, 2022
1 parent d0ab42c commit 423182e
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 12 deletions.
6 changes: 6 additions & 0 deletions .changeset/hungry-tools-chew.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@apollo/explorer': patch
'@apollo/sandbox': patch
---

fix dependency issue - move required deps into individual package jsons, not root package jsons
26 changes: 18 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,5 @@
"typescript": "3.9.10"
},
"dependencies": {
"graphql-ws": "^5.9.0",
"subscriptions-transport-ws": "^0.11.0"
}
}
5 changes: 4 additions & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,8 @@
"optional": true
}
},
"dependencies": {}
"dependencies": {
"graphql-ws": "^5.9.0",
"subscriptions-transport-ws": "^0.11.0"
}
}
5 changes: 4 additions & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,8 @@
"optional": true
}
},
"dependencies": {}
"dependencies": {
"graphql-ws": "^5.9.0",
"subscriptions-transport-ws": "^0.11.0"
}
}

0 comments on commit 423182e

Please sign in to comment.