Skip to content

Commit

Permalink
fix(release): package.json publish config non-public #753
Browse files Browse the repository at this point in the history
Several packages were missing the publish configuration
from their package.json files which made them private
packages on npm by default.
I fixed the visibility manually via npm GUI but we still need
to update the package.json files to match that in version
control as well so here we go.

Fixes #753

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Apr 1, 2021
1 parent 98199d6 commit 5a1b7a6
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/cactus-example-supply-chain-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
"runOnChangeOnly": true
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
"runOnChangeOnly": true
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down
2 changes: 1 addition & 1 deletion examples/cactus-example-supply-chain-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"typescript": "~3.9.5"
},
"publishConfig": {
"access": "restricted"
"access": "public"
},
"engines": {
"node": ">=10",
Expand Down
3 changes: 3 additions & 0 deletions packages/cactus-cmd-api-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
"runOnChangeOnly": true
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down
3 changes: 3 additions & 0 deletions packages/cactus-cockpit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"prepublishOnly": "ng build --prod"
},
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@angular/common": "11.2.1",
"@angular/core": "11.2.1",
Expand Down
3 changes: 3 additions & 0 deletions packages/cactus-core-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
"runOnChangeOnly": true
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down
3 changes: 3 additions & 0 deletions packages/cactus-plugin-consortium-manual/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
"runOnChangeOnly": true
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down

0 comments on commit 5a1b7a6

Please sign in to comment.