Skip to content

Commit 32392c9

Browse files
authored
refactor: move sse-client package dep from common to client-sdk (#233)
Currently we have: ``` client-sdk -> common -> sse-client ``` The `common` lib doesn't depend on `sse-client`, so this results in unnecessary `common` revisions. This commit makes `sse-client` a dependency of `client-sdk`.
1 parent ac23bb5 commit 32392c9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

libs/client-sdk/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-internal": "0.1.8",
8-
"launchdarkly-cpp-common": "0.3.5"
8+
"launchdarkly-cpp-common": "0.3.5",
9+
"launchdarkly-cpp-sse-client": "0.1.2"
910
}
1011
}

libs/common/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,5 @@
22
"name": "launchdarkly-cpp-common",
33
"description": "This package.json exists for modeling dependencies for the release process.",
44
"version": "0.3.5",
5-
"private": true,
6-
"dependencies": {
7-
"launchdarkly-cpp-sse-client": "0.1.2"
8-
}
5+
"private": true
96
}

0 commit comments

Comments
 (0)