Skip to content

Commit 114c7c3

Browse files
committed
fix(packaging): add missing publishConfig to graphql packages
Signed-off-by: Kevin Viglucci <[email protected]>
1 parent bb3a29d commit 114c7c3

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

packages/rsocket-graphql-apollo-link/package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"LICENSE",
1010
"README.md"
1111
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
1215
"scripts": {
1316
"build": "yarn run clean && yarn run compile",
1417
"clean": "rimraf -rf ./dist",
@@ -25,5 +28,6 @@
2528
"devDependencies": {
2629
"rimraf": "~3.0.2",
2730
"typescript": "~4.5.2"
28-
}
31+
},
32+
"gitHead": "39565e56d069f40fd9ac8d169f8f62a918f7f723"
2933
}

packages/rsocket-graphql-apollo-server/package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"LICENSE",
1010
"README.md"
1111
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
1215
"scripts": {
1316
"build": "yarn run clean && yarn run compile",
1417
"clean": "rimraf -rf ./dist",
@@ -21,14 +24,15 @@
2124
"@graphql-tools/schema": "^8.3.5",
2225
"@rsocket/composite-metadata": "^1.0.0-alpha.1",
2326
"@rsocket/core": "^1.0.0-alpha.1",
24-
"apollo-server-plugin-base": "^3.6.2",
2527
"apollo-server-core": "^3.6.6",
2628
"apollo-server-env": "^4.2.1",
29+
"apollo-server-plugin-base": "^3.6.2",
2730
"graphql": "^16.3.0",
2831
"rxjs": "^7.5"
2932
},
3033
"devDependencies": {
3134
"rimraf": "~3.0.2",
3235
"typescript": "~4.5.2"
33-
}
36+
},
37+
"gitHead": "39565e56d069f40fd9ac8d169f8f62a918f7f723"
3438
}

0 commit comments

Comments
 (0)